-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (64 loc) · 2.22 KB
/
release-beta.yml
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
name: Build Obsidian Plugin Beta
on: workflow_dispatch
env:
PLUGIN_NAME: obsidian-ribbon-divider
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: "beta"
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: "20.x"
- name: Get Package Version
id: get_package_version
run: echo "PACKAGE_VERSION=$(cat package.json | jq -r '.version')" >> $GITHUB_ENV
- name: Build
id: build
run: |
echo Building for version PACKAGE_VERSION
npm ci
npm run build
zip -jr ${{ env.PLUGIN_NAME }}-${{ env.PACKAGE_VERSION }}.zip dist/*
ls
- name: Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ env.PACKAGE_VERSION }}
prerelease: true
files: |
${{ env.PLUGIN_NAME }}-${{ env.PACKAGE_VERSION }}.zip
dist/main.js
dist/manifest.json
dist/styles.css
- name: Create beta manifest
id: createbetamanifest
run: |
cp -f manifest.json manifest-beta.json
- name: Upload manifest-beta.json
uses: actions/upload-artifact@v4
with:
name: manifest-beta
path: manifest-beta.json
update_mainifest_beta_main:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
with:
ref: "main"
- name: Download manifest-beta
uses: actions/download-artifact@v4
with:
name: manifest-beta
- name: Commit
id: commit
run: |
git config --local user.name 'Github Actions'
git config --local user.email '[email protected]'
git add .
git commit -m "Update manifest-beta.json"
git push