Skip to content

Commit

Permalink
fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Emilgardis committed Nov 18, 2021
1 parent 6425c0a commit dc39234
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -283,8 +283,8 @@ jobs:
# TODO: Not sure what package to use for this step.
run: echo "TODO"; exit 1
- name: Login to GHCR
if: (env.BRANCH == 'master' || startsWith(env.TAG, 'v') && runner.os == 'Linux'
if: (env.BRANCH == 'master' || startsWith(env.TAG, 'v')) && runner.os == 'Linux'
run: echo "${ secrets.GITHUB_TOKEN }" | docker login ghcr.io -u "${{ github.actor }}" --password-stdin
- name: Push image to GHCR
if: (env.BRANCH == 'master' || startsWith(env.TAG, 'v') && runner.os == 'Linux'
if: (env.BRANCH == 'master' || startsWith(env.TAG, 'v')) && runner.os == 'Linux'
run: ./ci/docker_push.sh

0 comments on commit dc39234

Please sign in to comment.