Skip to content

Commit

Permalink
Different deployement approach in GitHub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
heeckhau committed Apr 17, 2024
1 parent b989aa4 commit 902eafc
Showing 1 changed file with 9 additions and 26 deletions.
35 changes: 9 additions & 26 deletions .github/workflows/yew.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

permissions:
contents: write

jobs:
build:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -38,30 +41,10 @@ jobs:
run: trunk build --public-url ${{ github.event.repository.name }} --release
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/[email protected]
- name: Deploy to GitHub pages
# For main branch only 🚀
if: github.ref == 'refs/heads/main'
uses: JamesIves/github-pages-deploy-action@v4
with:
path: "./dist"

deploy:
needs: build # Add a dependency to the build job

# For main branch only
if: github.ref == 'refs/heads/main'

# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source

# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

# Specify runner + deployment step
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/[email protected]
folder: "./dist/"
clean: true

0 comments on commit 902eafc

Please sign in to comment.