We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ae7404 commit d7f4d0cCopy full SHA for d7f4d0c
.github/workflows/build.yml
@@ -145,12 +145,17 @@ jobs:
145
name: build-artifacts
146
path: build-artifacts
147
148
+ - name: Get Tag
149
+ id: tag_name
150
+ run: |
151
+ echo ::set-output name=TAG_NAME::${GITHUB_REF#refs/tags/}
152
+
153
- name: Publish Release [GitHub]
154
uses: kittaakos/upload-release-action@dev
155
with:
156
repo_token: ${{ secrets.RELEASE_TOKEN }}
157
repo_name: arduino/arduino-pro-ide
- release_name: ${{ github.event.release.tag_name }}
158
+ release_name: ${{ steps.tag_name.outputs.TAG_NAME }}
159
file: build-artifacts/*
160
tag: ${{ github.ref }}
161
file_glob: true
0 commit comments