From 775f0778ff8a9bcb9d6cb6ae23b3e5337665888f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ttore=20Leandro=20Tognoli?= Date: Tue, 20 Aug 2024 12:52:56 -0300 Subject: [PATCH] fix --- .github/workflows/build-all.yml | 8 ++++---- .github/workflows/build-image.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-all.yml b/.github/workflows/build-all.yml index e3a0790442f..45d3c80038f 100644 --- a/.github/workflows/build-all.yml +++ b/.github/workflows/build-all.yml @@ -27,7 +27,7 @@ jobs: with: workflow: Build and publish image to Docker Hub token: ${{ secrets.PERSONAL_TOKEN }} - inputs: '{ "image_name": "${{ github.event.inputs.image_name_prefix }}-renewal", "image_tag": "${{ github.event.inputs.image_tag }}", "ref" : "${{ github.event.inputs.ref }}", "prere" : "no", "vip" : "no", "PACKETVER": "${{github.event.inputs.PACKETVER}}" }' + inputs: '{ "image_name": "${{ github.event.inputs.image_name_prefix }}-renewal", "image_tag": "${{ github.event.inputs.image_tag }}", "ref" : "${{ github.event.inputs.ref }}", "prere" : "no", "vip" : "no", "PACKETVER": "${{ github.event.inputs.PACKETVER }}" }' build-prere: runs-on: ubuntu-latest steps: @@ -36,7 +36,7 @@ jobs: with: workflow: Build and publish image to Docker Hub token: ${{ secrets.PERSONAL_TOKEN }} - inputs: '{ "image_name": "${{ github.event.inputs.image_name_prefix }}-prere", "image_tag": "${{ github.event.inputs.image_tag }}", "ref" : "${{ github.event.inputs.ref }}", "prere" : "yes", "vip" : "no", "PACKETVER": "${{github.event.inputs.PACKETVER}}" }' + inputs: '{ "image_name": "${{ github.event.inputs.image_name_prefix }}-prere", "image_tag": "${{ github.event.inputs.image_tag }}", "ref" : "${{ github.event.inputs.ref }}", "prere" : "yes", "vip" : "no", "PACKETVER": "${{ github.event.inputs.PACKETVER }}" }' build-renewal-vip: runs-on: ubuntu-latest steps: @@ -45,7 +45,7 @@ jobs: with: workflow: Build and publish image to Docker Hub token: ${{ secrets.PERSONAL_TOKEN }} - inputs: '{ "image_name": "${{ github.event.inputs.image_name_prefix }}-renewal-vip", "image_tag": "${{ github.event.inputs.image_tag }}", "ref" : "${{ github.event.inputs.ref }}", "prere" : "no", "vip" : "yes", "PACKETVER": "${{github.event.inputs.PACKETVER}}" }' + inputs: '{ "image_name": "${{ github.event.inputs.image_name_prefix }}-renewal-vip", "image_tag": "${{ github.event.inputs.image_tag }}", "ref" : "${{ github.event.inputs.ref }}", "prere" : "no", "vip" : "yes", "PACKETVER": "${{ github.event.inputs.PACKETVER }}" }' build-prere-vip: runs-on: ubuntu-latest steps: @@ -54,7 +54,7 @@ jobs: with: workflow: Build and publish image to Docker Hub token: ${{ secrets.PERSONAL_TOKEN }} - inputs: '{ "image_name": "${{ github.event.inputs.image_name_prefix }}-prere-vip", "image_tag": "${{ github.event.inputs.image_tag }}", "ref" : "${{ github.event.inputs.ref }}", "prere" : "yes", "vip" : "yes", "PACKETVER": "${{github.event.inputs.PACKETVER}}" }' + inputs: '{ "image_name": "${{ github.event.inputs.image_name_prefix }}-prere-vip", "image_tag": "${{ github.event.inputs.image_tag }}", "ref" : "${{ github.event.inputs.ref }}", "prere" : "yes", "vip" : "yes", "PACKETVER": "${{ github.event.inputs.PACKETVER }}" }' build-flyway: runs-on: ubuntu-latest steps: diff --git a/.github/workflows/build-image.yml b/.github/workflows/build-image.yml index 60242b29884..18351925607 100644 --- a/.github/workflows/build-image.yml +++ b/.github/workflows/build-image.yml @@ -62,7 +62,7 @@ jobs: build-args: | ENABLE_PRERE=${{ github.event.inputs.prere }} ENABLE_VIP=${{ github.event.inputs.vip }} - PACKETVER=${{PACKETVER}} + PACKETVER=${{ PACKETVER }} tags: "rathena/${{ github.event.inputs.image_name }}:${{ github.event.inputs.image_tag }}" platforms: linux/amd64, linux/386, linux/arm64, linux/arm/v7 push: true