Skip to content

Commit

Permalink
fix syntax and wrong reference
Browse files Browse the repository at this point in the history
  • Loading branch information
Emilgardis committed Nov 18, 2021
1 parent 6425c0a commit e303849
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/bors.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
block_labels = ["needs-decision"]
delete_merged_branches = true
required_approvals = 1
status = ["docker-build", "CI"]
status = ["Docker Build", "CI"]
timeout_sec = 21600
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 e303849

Please sign in to comment.