From 3e28e926223312424cfa966d4fc9d1352ad160b4 Mon Sep 17 00:00:00 2001 From: Antonio Vivace Date: Fri, 20 Sep 2024 16:48:42 +0200 Subject: [PATCH] ci: build "master" container image and publish it to ghcr on every push --- .github/workflows/build-container.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/build-container.yml diff --git a/.github/workflows/build-container.yml b/.github/workflows/build-container.yml new file mode 100644 index 00000000..c5bcb24d --- /dev/null +++ b/.github/workflows/build-container.yml @@ -0,0 +1,22 @@ +name: Build Container image and publish it to GitHub Container Registry + +on: + push: + branches: + - master + +jobs: + publish-docker-image: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Login to GitHub Container Registry + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Build and push Docker image to the GHCR + run: | + docker build . --tag ghcr.io/gbdev/rgbds:master + docker push ghcr.io/gbdev/rgbds:master \ No newline at end of file