Skip to content

Commit

Permalink
fix: readd whitespaces inside deployment workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
aekasitt committed Aug 11, 2024
1 parent ffe805c commit dafb015
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -27,18 +28,22 @@ jobs:
with:
name: github-pages
path: ./dist

deploy:
needs: build
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'

permissions:
pages: write
contents: write
id-token: write
actions: read

environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

steps:
- name: Download artifact
uses: actions/download-artifact@v4
Expand Down

0 comments on commit dafb015

Please sign in to comment.