Skip to content

Commit

Permalink
added workflow to test post-release tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
georgemccabe committed Jun 8, 2022
1 parent e530675 commit 9244aab
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/post-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Post-release tasks

on:
release:
types:
- published

jobs:
add-checksum:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Print GitHub values for reference
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
#- name: Obtain release assets
# run:
#- name: Create checksum file
# run:
#- name: Upload release asset
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ github.event.release.upload_url }}
# asset_name: checksums.txt

0 comments on commit 9244aab

Please sign in to comment.