Skip to content

Commit

Permalink
fix: Make it work
Browse files Browse the repository at this point in the history
  • Loading branch information
StealWonders committed Jun 21, 2023
1 parent 6d99a4a commit 90518df
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/auto-publish-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
images: ghcr.io/${{ github.repository }}

- name: Build and push Docker image
uses: docker/build-push-action@v2.10.0
uses: docker/build-push-action@v4.1.1
with:
push: true # Will only build if this is not here
tags: ${{ steps.meta.outputs.tags }}
args: |
--build-arg USER_ID=1000
--build-arg GROUP_ID=1000
build-args: |
USER_ID=1000
GROUP_ID=1000
8 changes: 4 additions & 4 deletions .github/workflows/deploy-main-in-dev-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ jobs:
images: ghcr.io/${{ github.repository }}

- name: Build and push Docker image
uses: docker/build-push-action@v2.10.0
uses: docker/build-push-action@v4.1.1
with:
push: true # Will only build if this is not here
tags: ${{ steps.meta.outputs.tags }}
args: |
--build-arg USER_ID=1000
--build-arg GROUP_ID=1000
build-args: |
USER_ID=1000
GROUP_ID=1000
deploy:
needs: [ build ]
runs-on: ubuntu-latest
Expand Down

0 comments on commit 90518df

Please sign in to comment.