Skip to content

Commit

Permalink
Merge pull request #101 from Asana/add-github-actions-publish-to-gith…
Browse files Browse the repository at this point in the history
…ub-releases

Add GitHub actions workflow to publish to GitHub releases
  • Loading branch information
jv-asana authored Oct 17, 2022
2 parents a8384ca + ad19abc commit fa6163a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/publish-to-github-releases.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Publish to GitHub Releases

on:
push:
tags:
- "v*.*.*"

jobs:
build-n-publish-to-github:
name: Publish to GitHub Releases
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Publish to GitHub Releases
uses: softprops/action-gh-release@v1

0 comments on commit fa6163a

Please sign in to comment.