mirror of
https://github.com/1f349/admin.1f349.com.git
synced 2024-11-09 22:32:57 +00:00
26 lines
605 B
YAML
26 lines
605 B
YAML
name: Build/release
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out Git repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install Node.js, NPM and Yarn
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
|
|
- run: yarn
|
|
- run: yarn build
|
|
|
|
- name: Archive
|
|
run: tar -czvf upload.tar.gz -C ./dist .
|
|
|
|
- name: Release
|
|
run: 'curl -X POST -H "Authorization: Bearer ${{ secrets.DEPLOY }}" -F "upload=@upload.tar.gz" "https://sites.1f349.com/u?site=admin.1f349.com&branch=${{ github.ref_name }}"'
|