From 89ab74c05d5da0b5c78c85d5e8a0ffc51c836deb Mon Sep 17 00:00:00 2001 From: Guilherme Dantas Date: Thu, 11 Jul 2024 20:05:10 -0300 Subject: [PATCH] Add workflow to build and push machine image to GHCR (#118) --- .github/workflows/build.yml | 56 +++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..d0360d9 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,56 @@ +on: + push: + branches: + - 'main' + tags: + - 'v*' + +jobs: + build: + runs-on: ubuntu-latest + permissions: + packages: write + contents: read + env: + IMAGE_NAME: bug-buster-machine + steps: + - name: Check out repository + uses: actions/checkout@v4 + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + id: setup_buildx + uses: docker/setup-buildx-action@v3 + + - name: Build bounty examples + run: make bounties + + - name: Extract metadata from Git refs and GitHub events + id: extract_metadata + uses: docker/metadata-action@v5 + with: + images: | + ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }} + tags: | + type=semver,pattern={{version}} + type=ref,event=branch + + - name: Login to GitHub Container Registry + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Build machine image and push it to GitHub Container Registry + uses: docker/build-push-action@v6 + with: + context: . + push: true + builder: ${{ steps.setup_buildx.outputs.name }} + tags: ${{ steps.extract_metadata.outputs.tags }} + labels: ${{ steps.extract_metadata.lables.labels }} + cache-from: type=gha,scope=ubuntu + cache-to: type=gha,mode=max,scope=ubuntu