Use GitHub's own pages deploy action
This commit is contained in:
parent
66fc339bd2
commit
f626285cb4
11
.github/workflows/build.yml
vendored
11
.github/workflows/build.yml
vendored
@ -38,8 +38,13 @@ jobs:
|
|||||||
- name: Delete dist gitignore
|
- name: Delete dist gitignore
|
||||||
run: sudo rm -f ./public/dist/.gitignore
|
run: sudo rm -f ./public/dist/.gitignore
|
||||||
|
|
||||||
- name: Publish site as artifact
|
# - name: Publish site as artifact
|
||||||
uses: actions/upload-artifact@v2
|
# uses: actions/upload-artifact@v2
|
||||||
|
# with:
|
||||||
|
# name: website-static-bundle
|
||||||
|
# path: ./public
|
||||||
|
|
||||||
|
- name: Upload site as artifact
|
||||||
|
uses: actions/upload-pages-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: website-static-bundle
|
|
||||||
path: ./public
|
path: ./public
|
||||||
|
38
.github/workflows/deploy.yml
vendored
38
.github/workflows/deploy.yml
vendored
@ -11,19 +11,29 @@ jobs:
|
|||||||
deploy:
|
deploy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: build
|
needs: build
|
||||||
|
permissions:
|
||||||
|
pages: write
|
||||||
|
id-token: write
|
||||||
|
environment:
|
||||||
|
name: github-pages
|
||||||
|
url: ${{ steps.deployment.outputs.page_url }}
|
||||||
steps:
|
steps:
|
||||||
- name: Download bundle artifact
|
|
||||||
uses: actions/download-artifact@v2
|
|
||||||
with:
|
|
||||||
name: website-static-bundle
|
|
||||||
path: ./public
|
|
||||||
|
|
||||||
- name: Deploy to GitHub Pages
|
- name: Deploy to GitHub Pages
|
||||||
if: success()
|
id: deployment
|
||||||
uses: crazy-max/ghaction-github-pages@v2
|
uses: actions/deploy-pages@v1
|
||||||
with:
|
|
||||||
target_branch: gh-pages
|
# - name: Download bundle artifact
|
||||||
build_dir: public
|
# uses: actions/download-artifact@v2
|
||||||
fqdn: ewpratten.com
|
# with:
|
||||||
env:
|
# name: website-static-bundle
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
# path: ./public
|
||||||
|
|
||||||
|
# - name: Deploy to GitHub Pages
|
||||||
|
# if: success()
|
||||||
|
# uses: crazy-max/ghaction-github-pages@v2
|
||||||
|
# with:
|
||||||
|
# target_branch: gh-pages
|
||||||
|
# build_dir: public
|
||||||
|
# fqdn: ewpratten.com
|
||||||
|
# env:
|
||||||
|
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user