Skip to content

Commit d0f0b57

Browse files
feat: add develop branch configuration for prerelease and channel settings (#46)
* fix: update build command to use yarn workspace for documentation * fix: restrict workflow to master branch and standardize token step name * feat: add develop branch configuration for prerelease and channel settings --------- Co-authored-by: Giovani Guizzo <[email protected]>
1 parent 00f3ba9 commit d0f0b57

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/deploy-website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Build project
3939
env:
4040
VITE_GA_TAG: ${{ secrets.VITE_GA_TAG }}
41-
run: yarn 1.0.0-next.3 @sidequest/docs build
41+
run: yarn workspace @sidequest/docs build
4242

4343
- name: Upload artifact
4444
uses: actions/upload-pages-artifact@v3

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release
33
on:
44
workflow_run:
55
workflows: ["Build and Test"]
6-
branches: [master, develop]
6+
branches: [master]
77
types:
88
- completed
99

@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
if: ${{ github.event.workflow_run.conclusion == 'success' }}
1414
steps:
15-
- name: 'Generate token'
15+
- name: "Generate token"
1616
id: generate_token
1717
uses: tibdex/github-app-token@v1
1818
with:

0 commit comments

Comments
 (0)