From 733b69d5fe0838c41585d1f0af3b6facc43138bd Mon Sep 17 00:00:00 2001 From: Kodai Tooi <26849015+ktooi@users.noreply.github.com> Date: Wed, 4 Aug 2021 23:08:43 +0900 Subject: [PATCH] Added a workflow so as to automatically release then the tags are pushed. --- .github/workflows/release.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..d7c3214 --- /dev/null +++ b/.github/workflows/release.yml @@ -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 }}