Skip to content

Commit

Permalink
Add release workflow to actions (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdenen authored Apr 1, 2020
1 parent a33bdb6 commit c8d3a0d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Release
on:
release:
types:
- created
jobs:
publish:
name: Push release Docker image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Push
uses: elgohr/[email protected]
with:
name: inhindsight/hindsight
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

0 comments on commit c8d3a0d

Please sign in to comment.