-
-
Notifications
You must be signed in to change notification settings - Fork 354
104 lines (91 loc) · 2.87 KB
/
Copy pathrelease-beta.yml
File metadata and controls
104 lines (91 loc) · 2.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: Release WebGAL Beta
on:
push:
tags:
- '*beta*'
permissions:
contents: write
jobs:
check-dev-tag:
name: Check beta tag is on dev
runs-on: ubuntu-latest
outputs:
should_release: ${{ steps.check.outputs.should_release }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check tag commit is on dev
id: check
shell: bash
run: |
git fetch origin dev --prune
TAG_COMMIT="$(git rev-list -n 1 "$GITHUB_REF_NAME")"
if git merge-base --is-ancestor "$TAG_COMMIT" origin/dev; then
echo "should_release=true" >> "$GITHUB_OUTPUT"
else
echo "::notice::Beta release skipped because tag ${GITHUB_REF_NAME} is not on dev."
echo "should_release=false" >> "$GITHUB_OUTPUT"
fi
build-webgal-static-webpage:
name: Build WebGAL Static Webpage
runs-on: ubuntu-latest
needs: check-dev-tag
if: ${{ needs.check-dev-tag.outputs.should_release == 'true' }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version-file: package.json
cache: 'yarn'
- name: Install
run: npm install yarn -g && yarn install
- name: Build
run: yarn build
- name: Package WebGAL Engine Web
run: |
cd packages/webgal/dist
zip -r "$GITHUB_WORKSPACE/webgal-engine-web.zip" .
- name: Upload WebGAL Engine Artifact
uses: actions/upload-artifact@v4
with:
name: webgal-engine-web
path: webgal-engine-web.zip
if-no-files-found: error
release:
name: Release
runs-on: ubuntu-latest
needs: [check-dev-tag, build-webgal-static-webpage]
if: ${{ needs.check-dev-tag.outputs.should_release == 'true' }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Download WebGAL Engine Artifact
uses: actions/download-artifact@v4
with:
name: webgal-engine-web
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: WebGAL ${{ github.ref }}
body_path: releasenote.md
draft: true
prerelease: true
- name: Upload WebGAL Engine Web
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: webgal-engine-web.zip
asset_name: WebGAL-${{ github.ref_name }}-web.zip
asset_content_type: application/zip