Skip to content

Commit 69feea7

Browse files
authored
Merge pull request #9 from thc202/migrate-github-action
Migrate GitHub Action to new syntax
2 parents 73df68a + 3ba434c commit 69feea7

File tree

2 files changed

+24
-23
lines changed

2 files changed

+24
-23
lines changed

.github/main.workflow

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/workflows/release-add-on.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Release Add-On
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
jobs:
9+
release:
10+
name: Build and Release Add-On
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Actor Filter
14+
uses: actions/bin/filter@3c0b4f0e63ea54ea5df2914b4fabf383368cd0da
15+
with:
16+
args: actor kingthorin psiinon thc202
17+
- uses: actions/checkout@v1
18+
- name: Build and Release Add-On
19+
uses: docker://openjdk:8
20+
env:
21+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22+
with:
23+
entrypoint: ./gradlew
24+
args: createReleaseFromGitHubRef

0 commit comments

Comments
 (0)