Skip to content

Commit

Permalink
action fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
darsan-in committed Jul 2, 2024
1 parent 06e7ba6 commit 8c72e04
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/ftpdeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,16 +52,26 @@ jobs:
- name: Generating Static Files
run: yarn build

- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: github-pages
path: ./kinact-package

deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: github-pages
path: ./path/to/download/artifacts

- name: Deploy to GitHub Pages
id: deployment
uses: actions/[email protected]

0 comments on commit 8c72e04

Please sign in to comment.