Skip to content

Commit

Permalink
ci: automatically create github release
Browse files Browse the repository at this point in the history
  • Loading branch information
fredriklindberg committed Jun 24, 2021
1 parent 25ad225 commit 69996d5
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: master
name: release
on:
push:
tags:
Expand Down Expand Up @@ -27,4 +27,9 @@ jobs:
password: ${{ secrets.DOCKER_ACCESS_TOKEN }}

- name: Publish unstable container
run: make image.publish.latest
run: make image.publish.latest

- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: ${{ startsWith(github.ref, '/refs/tags/v0') }}

0 comments on commit 69996d5

Please sign in to comment.