-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NEW Move deployment to GitHub Pages (#142)
- Loading branch information
1 parent
c1cbf50
commit a0d3c1a
Showing
6 changed files
with
81 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: Deploy to GitHub pages | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
workflow_dispatch: | ||
|
||
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | ||
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | ||
concurrency: | ||
group: "gh-pages" | ||
cancel-in-progress: false | ||
|
||
permissions: {} | ||
|
||
jobs: | ||
build: | ||
name: Build site | ||
runs-on: ubuntu-latest | ||
if: github.repository_owner == 'silverstripe' | ||
permissions: | ||
contents: read | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Read .nvmrc | ||
id: read-nvm | ||
shell: bash | ||
run: echo "version=$(cat .nvmrc)" >> "$GITHUB_OUTPUT" | ||
|
||
- name: Setup node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ steps.read-nvm.outputs.version }} | ||
|
||
- name: Setup GH pages | ||
id: pages | ||
uses: actions/configure-pages@v5 | ||
|
||
- name: Build static files | ||
shell: bash | ||
run: | | ||
cat << EOF > .env | ||
VUE_APP_GRAPHQL_ENDPOINT=https://api.github.com/graphql | ||
VUE_APP_GRAPHQL_TOKEN=${{ secrets.GRAPHQL_TOKEN_FOR_GH_PAGES }} | ||
EOF | ||
npm install | ||
npx update-browserslist-db@latest --yes | ||
npm run now-build | ||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
path: "dist/" | ||
|
||
deploy: | ||
name: Deploy site | ||
needs: build | ||
runs-on: ubuntu-latest | ||
if: github.repository_owner == 'silverstripe' | ||
permissions: | ||
pages: write | ||
id-token: write | ||
environment: | ||
name: github-pages | ||
url: ${{steps.deployment.outputs.page_url}} | ||
steps: | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,5 +19,3 @@ yarn-error.log* | |
*.njsproj | ||
*.sln | ||
.env | ||
|
||
.vercel |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,5 +8,6 @@ module.exports = { | |
apollo: { | ||
lintGQL: false | ||
} | ||
} | ||
}, | ||
publicPath: "./" | ||
} |