Skip to content

Commit

Permalink
fix: test ver 4
Browse files Browse the repository at this point in the history
  • Loading branch information
plexoos committed Jul 10, 2024
1 parent fc3b842 commit 4524f9c
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ on:
- beta
- betatest

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: write
pages: write
id-token: write

jobs:
build-test-release:
runs-on: [gpu]
Expand Down Expand Up @@ -38,6 +44,29 @@ jobs:
- run: grep ESI_SHELL_VERSION esi-shell

deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build-test-release
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Pages
uses: actions/configure-pages@v5

- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1

- name: Upload artifact
uses: actions/upload-pages-artifact@v3

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

cleanup:
runs-on: ubuntu-latest
needs: build-test-release
Expand Down

0 comments on commit 4524f9c

Please sign in to comment.