release amd
This commit is contained in:
parent
047174291b
commit
6f6c630c97
1 changed files with 37 additions and 0 deletions
37
.gitea/workflows/release_amd.yml
Normal file
37
.gitea/workflows/release_amd.yml
Normal file
|
@ -0,0 +1,37 @@
|
|||
name: Outbag
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- v*
|
||||
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Install Dependencies
|
||||
run: npm ci
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
mkdir build
|
||||
npm run bundleRelease
|
||||
|
||||
- name: Build AMD
|
||||
run: |
|
||||
npm run build-amd
|
||||
mkdir upload
|
||||
cp build/bin/* upload
|
||||
|
||||
- name: Create Release
|
||||
id: gitea-release
|
||||
uses: akkuman/gitea-release-action@v1
|
||||
with:
|
||||
files: |
|
||||
upload/**
|
||||
api_key: '${{ secrets.RELEASE_TOKEN }}'
|
Loading…
Reference in a new issue