Browse Source

Test out action:

master
nolim1t 5 years ago
parent
commit
ce25cc7d3c
No known key found for this signature in database GPG Key ID: F6287B82CC84BCBD
  1. 16
      .github/workflows/release.yml

16
.github/workflows/release.yml

@ -0,0 +1,16 @@
name: Release
on: [push]
jobs:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- name: Run Build script
run: sudo ./build.sh
- name: Release Image
if: startsWith(github.ref, 'refs/tags/')
uses: meeDamian/github-release@v1.0.0
with:
gzip: false
files: dist/*.zip
token: ${{ secrets.GITHUB_TOKEN }}
Loading…
Cancel
Save