From 9e9e90a200dbff918296cd4aa6788c6ca89a4be0 Mon Sep 17 00:00:00 2001 From: Yeol <136407746+13m0n4de@users.noreply.github.com> Date: Sat, 26 Oct 2024 02:07:27 +0800 Subject: [PATCH] =?UTF-8?q?ci(web/unserialize):=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=B7=A5=E4=BD=9C=E6=B5=81=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/web.unserialize.yml | 50 +++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 .github/workflows/web.unserialize.yml diff --git a/.github/workflows/web.unserialize.yml b/.github/workflows/web.unserialize.yml new file mode 100644 index 0000000..33982b8 --- /dev/null +++ b/.github/workflows/web.unserialize.yml @@ -0,0 +1,50 @@ +name: Challenge Unserialize + +on: + push: + branches: ["main", "web/unserialize"] + paths: + - "!**/README.md" + - "challenges/web/unserialize/build/**" + workflow_dispatch: + +env: + TYPE: web + NAME: unserialize + REGISTRY: ghcr.io + +jobs: + challenge-build: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Log in to the Container registry + uses: docker/login-action@v3 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Extract metadata (tags, labels) for Docker + id: meta + uses: docker/metadata-action@v5 + with: + images: ${{ env.REGISTRY }}/${{ github.repository }}/${{ env.NAME }} + tags: | + latest + + - name: Build and push Docker image + uses: docker/build-push-action@v6 + with: + context: challenges/${{ env.TYPE }}/${{ env.NAME }}/build + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + push: true