Skip to content

Remove 'raft' from sample helm values.yml, replace 'ibft' with 'ibft2' #9

Remove 'raft' from sample helm values.yml, replace 'ibft' with 'ibft2'

Remove 'raft' from sample helm values.yml, replace 'ibft' with 'ibft2' #9

Workflow file for this run

name: Delete Branch Folders on gh-pages
on:
pull_request:
types: [closed]
jobs:
is-fork-pull-request:
name: Determine whether this pull request is from a fork
runs-on: ubuntu-latest
outputs:
IS_FORK: ${{ steps.is-fork.outputs.IS_FORK }}
steps:
- uses: actions/checkout@v3
- name: Determine whether this PR is from a fork
id: is-fork
run: echo "IS_FORK=$(gh pr view --json isCrossRepository --jq '.isCrossRepository' "${PR_NUMBER}" )" >> "$GITHUB_OUTPUT"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_NUMBER: ${{ github.event.pull_request.number }}
delete_branch_folder_job:
runs-on: ubuntu-latest
needs: is-fork-pull-request
permissions:
contents: write
if: ${{ needs.is-fork-pull-request.outputs.IS_FORK == 'true' }}
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
ref: gh-pages
- name: Delete preview build
env:
BRANCH_NAME: ${{ github.event.pull_request.head.ref }}
run: rm -rf "${BRANCH_NAME}"
- name: Deploy
uses: peaceiris/actions-gh-pages@068dc23d9710f1ba62e86896f84735d869951305
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./
keep_files: false