From 5b8f0b64adb916fb16e1c6be3328a348a5ba01b5 Mon Sep 17 00:00:00 2001 From: Azalea Gui Date: Thu, 23 Feb 2023 20:54:08 -0500 Subject: [PATCH 1/2] [F] Fix nightly build script --- .github/workflows/nightly.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 1f3ae9f..e75f11b 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -23,7 +23,7 @@ jobs: run: | git fetch --prune --unshallow --tags GIT_SHA="$(git rev-parse --short HEAD)" - CUR_TAG="$(git tag -l | grep '-nightly' | tail -1)" + CUR_TAG="$(git tag -l | grep 'nightly' | tail -1)" VER="$(yarn --silent app:version)" echo "SHORT_SHA=$GIT_SHA" >> $GITHUB_ENV echo "VER=$VER" >> $GITHUB_ENV From 5e999c67d182e5c308f7899f482084a96af9bead Mon Sep 17 00:00:00 2001 From: Azalea Gui Date: Thu, 23 Feb 2023 20:54:36 -0500 Subject: [PATCH 2/2] [+] Docker action --- .github/workflows/docker.yml | 52 ++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 .github/workflows/docker.yml diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml new file mode 100644 index 0000000..c51d6a5 --- /dev/null +++ b/.github/workflows/docker.yml @@ -0,0 +1,52 @@ +name: Docker + +on: + push: + branches: [ "main" ] + +env: + REGISTRY: ghcr.io + IMAGE_NAME: ${{ github.repository }} + CARGO_TERM_COLOR: always + +jobs: + build: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + # This is used to complete the identity challenge + # with sigstore/fulcio when running outside of PRs. + id-token: write + + steps: + - uses: actions/checkout@v3 + + - run: | + cd backend + cargo build --verbose + + - uses: docker/setup-buildx-action@v2 + + - name: Log into registry ${{ env.REGISTRY }} + uses: docker/login-action@v2 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Extract Docker metadata + id: meta + uses: docker/metadata-action@v4 + with: + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + + - name: Build and push Docker image + id: build-and-push + uses: docker/build-push-action@v4 + with: + context: . + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + cache-from: type=gha + cache-to: type=gha,mode=max