diff options
| author | Calum MacRae <hi@cmacr.ae> | 2021-07-12 20:03:40 +0100 |
|---|---|---|
| committer | Calum MacRae <hi@cmacr.ae> | 2021-07-12 22:08:55 +0100 |
| commit | 8a82e63fe1095209c00ba41914892e76421b9f9a (patch) | |
| tree | 407edc73c1f15ee92204893d5da7b2a22e0a2268 /.github/workflows | |
| parent | 48f7ae5ac249b0bee4dfc9c9c7dea9e3b9fb75db (diff) | |
| download | seaweedfs-csi-driver-8a82e63fe1095209c00ba41914892e76421b9f9a.tar.xz seaweedfs-csi-driver-8a82e63fe1095209c00ba41914892e76421b9f9a.zip | |
CI: Ensure Docker tags derived from refs include legal characters
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/release.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index d8b9f0e..087f461 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -35,7 +35,7 @@ jobs: git config user.email "$GITHUB_ACTOR@users.noreply.github.com" - name: Get the current tag name - run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV + run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" | sed 's/\//_/g' >> $GITHUB_ENV - name: Setup QEMU uses: docker/setup-qemu-action@v1 |
