Skip to content

Commit

Permalink
Merge pull request #50 from nfa-vfxim/bo
Browse files Browse the repository at this point in the history
Added release actions
  • Loading branch information
bkamphues authored Apr 12, 2021
2 parents 0354688 + e82c602 commit e0f0703
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/github-actions-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Github Actions Release
on:
release:
types: [published]
jobs:
release-4ejaars_source-branch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: 4ejaars_source
- name: Create a 4ejaars_source Release
uses: elgohr/Github-Release-Action@master
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
with:
args: Automatic 4ejaars_source release, tracking master.
release-3ejaars_source-branch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: 3ejaars_source
- name: Create a 3ejaars_source Release
uses: elgohr/Github-Release-Action@master
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
with:
args: Automatic 3ejaars_source release, tracking master.

0 comments on commit e0f0703

Please sign in to comment.