We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e43def commit 58cf475Copy full SHA for 58cf475
.github/workflows/push.yml
@@ -31,8 +31,7 @@ jobs:
31
uses: actions/checkout@v3
32
33
- name: Get tag name
34
- id: get_tag_name
35
- run: echo "::set-output name=tag::$(echo "${{ github.ref }}" | grep -oP 'refs/tags/\K(.+)')"
+ run: echo "TAG=$(echo "${{ github.ref }}" | grep -oP 'refs/tags/\K(.+)')" >> $GITHUB_ENV
36
37
- name: Build and push
38
id: build_and_push
@@ -57,7 +56,7 @@ jobs:
57
56
npm install -g @devcontainers/cli
58
build/vscdc push --page ${{ matrix.page }} \
59
--pageTotal ${{ matrix.page-total }} \
60
- --release ${{ steps.get_tag_name.outputs.tag }} \
+ --release ${{ env.TAG }} \
61
--github-repo ${{ github.repository }} \
62
--registry "$REGISTRY" \
63
--registry-path "$REGISTRY_BASE_PATH" \
0 commit comments