Skip to content

Commit

Permalink
Added a workflow
Browse files Browse the repository at this point in the history
so as to automatically release then the tags are pushed.
  • Loading branch information
ktooi committed Aug 4, 2021
1 parent 44f4044 commit 733b69d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
name: Release

on:
push:
tags:
- '*.*.*'

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: galaxy
uses: robertdebock/galaxy-action@1.1.0
with:
galaxy_api_key: ${{ secrets.galaxy_api_key }}

0 comments on commit 733b69d

Please sign in to comment.