Skip to content

Commit

Permalink
Create release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gtnardy authored Apr 4, 2021
1 parent f7efc9b commit d18271c
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Push Release

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Archive Release
uses: thedoctor0/zip-release@master
with:
filename: 'package.zip'

- name: Upload Release
uses: ncipollo/release-action@v1
with:
artifacts: "package.zip"
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit d18271c

Please sign in to comment.