Skip to content

Commit

Permalink
chore: fix docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
bobheadxi committed Oct 30, 2021
1 parent 59d13dd commit 030e347
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish_v1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v2
- name: docker build
run: docker build -t ghcr.io/bobheadxi/gobenchdata:$(git describe --tags)
- name: docker build
run: docker build -t ghcr.io/bobheadxi/gobenchdata:$(git describe --tags) .
- name: Publish to GitHub Container Registry
run: |
echo ${{ secrets.ACCESS_TOKEN }} | docker login ghcr.io --username $GITHUB_ACTOR --password-stdin
docker push ghcr.io/gobenchdata/gobenchdata:$(git describe --tags)
docker push ghcr.io/bobheadxi/gobenchdata:$(git describe --tags)

0 comments on commit 030e347

Please sign in to comment.