Upload a file to the release #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Uploading to A Insiders Release | |
on: | |
push: | |
branches: | |
- 'release-insiders/**' | |
jobs: | |
upload: | |
name: Upload the Build Shaw | |
runs-on: ubuntu-20.04 | |
steps: | |
- run: echo ${{ github.sha }} > sha.txt | |
- name: Upload Shaw File To Release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
file: sha.txt | |
tag: v1.2.1-0 | |
repo_name: brimdata/zui-insiders | |
repo_token: ${{ secrets.PAT_TOKEN }} |