Skip to content

Commit

Permalink
Merge jobs: remove quotes in GITHUB_ENV.
Browse files Browse the repository at this point in the history
  • Loading branch information
octo committed Nov 23, 2023
1 parent 02ad13f commit c37d037
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/merge-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
- name: Determine container name
run: |
branch="$(sed -e 's#refs/heads/##' <<<"${{ github.ref }}")"
echo "SLUG='collectd/ci:${branch:?}'" >>"${GITHUB_ENV}"
echo "SLUG=collectd/ci:${branch:?}" >>"${GITHUB_ENV}"
- name: Build container
run: docker build -t "${SLUG:?}" .
run: docker build --pull -t "${SLUG:?}" .
- run: docker inspect "${SLUG:?}"
- run: docker history "${SLUG:?}"
- run: docker images
Expand Down

0 comments on commit c37d037

Please sign in to comment.