Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Commit

Permalink
100% deploy lolz
Browse files Browse the repository at this point in the history
  • Loading branch information
h.u.g.u.rp committed Nov 5, 2023
1 parent 49374c1 commit d13d135
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/publish-github-page.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,23 @@ concurrency:
cancel-in-progress: true

jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/configure-pages@v2
- name: Checkout your repository using git
uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: npm install
- run: npm run build
- run: rm dist/.env.json
- run: mv dist/.env.production.json dist/.env.json
- uses: actions/upload-pages-artifact@v1
with:
path: "./dist"
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1

0 comments on commit d13d135

Please sign in to comment.