Skip to content

Commit

Permalink
release: add github action script
Browse files Browse the repository at this point in the history
  • Loading branch information
2BAB committed Sep 27, 2020
1 parent 867881f commit f51da76
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: release

on:
push:
tags:
- '*'

jobs:
polyfill-release:
runs-on: ubuntu-latest
steps:
- name: Set up JDK 1.8
uses: actions/checkout@v2

- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8

- name: Build & Release Seal plugin using Gradle
run: chmod +x ./publish.sh | ./publish.sh
env:
BINTRAY_USER: ${{ secrets.BINTRAY_USER }}
BINTRAY_APIKEY: ${{ secrets.BINTRAY_APIKEY }}
GH_DEV_TOKEN: ${{ secrets.GH_DEV_TOKEN }}

0 comments on commit f51da76

Please sign in to comment.