Skip to content

Commit

Permalink
CD integration with GitHub Actions (#367)
Browse files Browse the repository at this point in the history
* CD integration with GitHub Actions

Automate releases using https://github.com/marketplace/actions/gh-release action. 

Deprecates #359

* Fix indentation

* Update .github/workflows/main.yml
  • Loading branch information
jmkk authored and ob committed Oct 3, 2019
1 parent 3face05 commit be43821
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ jobs:
run: ./scripts/bluepill.sh test
- name: Build Bluepill
run: ./scripts/bluepill.sh build
- name: Release
uses: softprops/action-gh-release@v1
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
with:
files: 'build/*.zip'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

bazel_build:
name: Bazel build
Expand Down

0 comments on commit be43821

Please sign in to comment.