Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
minikin committed Nov 13, 2024
1 parent d20d7ff commit d239f2c
Showing 1 changed file with 48 additions and 48 deletions.
96 changes: 48 additions & 48 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,51 +82,51 @@ jobs:
with:
artifact_name: github-pages

deploy-preview:
needs: build
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest

permissions:
pages: write
id-token: write
pull-requests: write
deployments: write
statuses: write
contents: read

environment:
name: preview
url: ${{ steps.deployment.outputs.page_url }}

concurrency:
group: "pages-pr-${{ github.event.pull_request.number }}"
cancel-in-progress: true

steps:
- name: Configure Pages
uses: actions/configure-pages@v4

- name: Download artifact
uses: actions/download-artifact@v4
with:
name: github-pages
path: build

- name: Deploy Preview
id: deployment
uses: actions/deploy-pages@v2
with:
artifact_name: github-pages

- name: Add Preview URL Comment
uses: actions/github-script@v6
with:
script: |
const preview_url = `https://${context.repo.owner}.github.io/${context.repo.repo}/pr-preview/pr-${context.issue.number}`;
github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
body: `🚀 Preview deployment is ready!\nURL: ${preview_url}`
})
# deploy-preview:
# needs: build
# if: github.event_name == 'pull_request'
# runs-on: ubuntu-latest

# permissions:
# pages: write
# id-token: write
# pull-requests: write
# deployments: write
# statuses: write
# contents: read

# environment:
# name: preview
# url: ${{ steps.deployment.outputs.page_url }}

# concurrency:
# group: "pages-pr-${{ github.event.pull_request.number }}"
# cancel-in-progress: true

# steps:
# - name: Configure Pages
# uses: actions/configure-pages@v4

# - name: Download artifact
# uses: actions/download-artifact@v4
# with:
# name: github-pages
# path: build

# - name: Deploy Preview
# id: deployment
# uses: actions/deploy-pages@v2
# with:
# artifact_name: github-pages

# - name: Add Preview URL Comment
# uses: actions/github-script@v6
# with:
# script: |
# const preview_url = `https://${context.repo.owner}.github.io/${context.repo.repo}/pr-preview/pr-${context.issue.number}`;
# github.rest.issues.createComment({
# owner: context.repo.owner,
# repo: context.repo.repo,
# issue_number: context.issue.number,
# body: `🚀 Preview deployment is ready!\nURL: ${preview_url}`
# })

0 comments on commit d239f2c

Please sign in to comment.