Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Attempt to fix labelling in docker workflow
Browse files Browse the repository at this point in the history
Per #15972 (comment)

Completely untested.
  • Loading branch information
David Robertson committed Jul 27, 2023
1 parent f98f4f2 commit 6be958c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,13 @@ jobs:

- name: Inspect builder
run: docker buildx inspect


- name: Checkout repository
uses: actions/checkout@v3

- name: Extract version from pyproject.toml
# Note: explicitly requesting bash will mean bash is invoked with `-eo pipefail`
shell: bash
run: |
echo "SYNAPSE_VERSION=$(grep "^version" pyproject.toml | sed -E 's/version\s*=\s*["]([^"]*)["]/\1/')" >> $GITHUB_ENV
Expand Down

0 comments on commit 6be958c

Please sign in to comment.