diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 736f462..bf504a2 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,28 +1,30 @@ -name: Build and Deploy -on: - push: - branches: - - main # Set a branch to deploy - pull_request: - workflow_run: - workflows: ["Synchronize data"] - types: - - completed - -permissions: - contents: write -jobs: - build-and-deploy: - runs-on: ubuntu-latest - concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - permissions: - contents: write - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 +name: Deploy to GitHub Pages +on: + # Trigger the workflow every time you push to the `main` branch + # Using a different branch name? Replace `main` with your branch’s name + push: + branches: [ main ] + # Allows you to run this workflow manually from the Actions tab on GitHub. + workflow_dispatch: + workflow_run: + workflows: ["Synchronize data"] + types: + - completed + +# Allow this job to clone the repo and create a page deployment +permissions: + contents: read + pages: write + id-token: write + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout your repository using git + uses: actions/checkout@v4 + - uses: denoland/setup-deno@v1 with: deno-version: v1.x @@ -42,10 +44,19 @@ jobs: - name: Add custom domain run: "touch dist/CNAME && echo \"data.web3privacy.info\" >> dist/CNAME" - - - name: Deploy - uses: peaceiris/actions-gh-pages@v3 - if: ${{ github.ref == 'refs/heads/main' }} + + - name: Upload Pages artifact + uses: actions/upload-pages-artifact@v3 with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./dist \ No newline at end of file + 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@v4 \ No newline at end of file