|
|
@ -9,7 +9,7 @@ permissions: |
|
|
packages: write |
|
|
packages: write |
|
|
|
|
|
|
|
|
jobs: |
|
|
jobs: |
|
|
build-and-package: |
|
|
nightly-build-and-push: |
|
|
runs-on: ubuntu-latest |
|
|
runs-on: ubuntu-latest |
|
|
steps: |
|
|
steps: |
|
|
- name: Checkout |
|
|
- name: Checkout |
|
|
@ -20,14 +20,22 @@ jobs: |
|
|
with: |
|
|
with: |
|
|
deno-version: v2.x |
|
|
deno-version: v2.x |
|
|
|
|
|
|
|
|
|
|
|
- name: Cache Deno dependencies |
|
|
|
|
|
uses: actions/cache@v4 |
|
|
|
|
|
with: |
|
|
|
|
|
path: ${{ steps.setup-deno.outputs.deno-cache-path }} |
|
|
|
|
|
key: deno-cache-${{ runner.os }}-${{ hashFiles('**/deno.lock') }} |
|
|
|
|
|
restore-keys: | |
|
|
|
|
|
deno-cache-${{ runner.os }}- |
|
|
|
|
|
|
|
|
|
|
|
# - name: Run tests |
|
|
|
|
|
# working-directory: packages/web |
|
|
|
|
|
# run: deno task test |
|
|
|
|
|
|
|
|
- name: Install Dependencies |
|
|
- name: Install Dependencies |
|
|
working-directory: packages/web |
|
|
working-directory: packages/web |
|
|
run: deno install |
|
|
run: deno install |
|
|
|
|
|
|
|
|
- name: Run tests |
|
|
|
|
|
working-directory: packages/web |
|
|
|
|
|
run: deno task test |
|
|
|
|
|
|
|
|
|
|
|
- name: Build Package |
|
|
- name: Build Package |
|
|
working-directory: packages/web |
|
|
working-directory: packages/web |
|
|
run: deno task build |
|
|
run: deno task build |
|
|
@ -42,6 +50,19 @@ jobs: |
|
|
name: build |
|
|
name: build |
|
|
path: packages/web/dist/build.tar |
|
|
path: packages/web/dist/build.tar |
|
|
|
|
|
|
|
|
|
|
|
- name: Get latest release version |
|
|
|
|
|
id: get_release |
|
|
|
|
|
run: | |
|
|
|
|
|
LATEST_TAG=$(curl -sL \ |
|
|
|
|
|
-H "Accept: application/vnd.github+json" \ |
|
|
|
|
|
-H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \ |
|
|
|
|
|
https://api.github.com/repos/${{ github.repository }}/releases/latest | jq -r ".tag_name") |
|
|
|
|
|
# Fallback to a default if no release is found |
|
|
|
|
|
if [ -z "$LATEST_TAG" ]; then |
|
|
|
|
|
LATEST_TAG="2.6.0" |
|
|
|
|
|
fi |
|
|
|
|
|
echo "tag=${LATEST_TAG}" >> $GITHUB_OUTPUT |
|
|
|
|
|
|
|
|
- name: Set up QEMU |
|
|
- name: Set up QEMU |
|
|
uses: docker/setup-qemu-action@v3 |
|
|
uses: docker/setup-qemu-action@v3 |
|
|
|
|
|
|
|
|
@ -52,7 +73,9 @@ jobs: |
|
|
containerfiles: | |
|
|
containerfiles: | |
|
|
./infra/Containerfile |
|
|
./infra/Containerfile |
|
|
image: ${{ github.event.repository.full_name }} |
|
|
image: ${{ github.event.repository.full_name }} |
|
|
tags: nightly ${{ github.sha }} |
|
|
tags: nightly-${{ steps.get_release.outputs.tag }}-${{ github.sha }} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
oci: true |
|
|
oci: true |
|
|
platforms: linux/amd64, linux/arm64 |
|
|
platforms: linux/amd64, linux/arm64 |
|
|
|
|
|
|
|
|
@ -68,3 +91,4 @@ jobs: |
|
|
|
|
|
|
|
|
- name: Print image url |
|
|
- name: Print image url |
|
|
run: echo "Image pushed to ${{ steps.push-to-registry.outputs.registry-paths }}" |
|
|
run: echo "Image pushed to ${{ steps.push-to-registry.outputs.registry-paths }}" |
|
|
|
|
|
|
|
|
|