Skip to content
This repository has been archived by the owner on Aug 29, 2021. It is now read-only.

Commit

Permalink
release upload action
Browse files Browse the repository at this point in the history
  • Loading branch information
r2dev2 committed Aug 11, 2021
1 parent 77feb6c commit 3ebba5f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Latest Release Build
on:
release:
types:
- released
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build extensions
run: |
make
- name: Upload build to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dist/ALSWikiEditor.zip
asset_name: ALSWikiEditor.zip
tag: ${{ github.ref }}
overwrite: true

0 comments on commit 3ebba5f

Please sign in to comment.