Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ettoreleandrotognoli authored and Jenkins committed Jan 14, 2025
1 parent 60e1695 commit 82fd9d3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 82fd9d3

Please sign in to comment.