Skip to content

Commit

Permalink
ci: positional arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
iCrawl committed May 6, 2023
1 parent 256b68b commit fc5b9c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-dev-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ jobs:
run: echo ${{ secrets.DOCKER_ACCESS_TOKEN }} | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin

- name: Build & push docker image
run: yarn docker build --buildkit --push @discordjs/proxy-container -t discordjs/proxy:latest
run: yarn docker build --buildkit @discordjs/proxy-container -t discordjs/proxy:latest --push
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ jobs:
run: echo ${{ secrets.DOCKER_ACCESS_TOKEN }} | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin

- name: Build & push docker image
run: yarn docker build --buildkit --push @discordjs/proxy-container -t discordjs/proxy:$(cut -d '.' -f1 <<< $(jq --raw-output '.version' packages/proxy-container/package.json))
run: yarn docker build --buildkit @discordjs/proxy-container -t discordjs/proxy:$(cut -d '.' -f1 <<< $(jq --raw-output '.version' packages/proxy-container/package.json)) --push

0 comments on commit fc5b9c5

Please sign in to comment.