Fix to GitHub workflow env
All checks were successful
Build and deploy site / Build and deploy site (push) Successful in 30s
All checks were successful
Build and deploy site / Build and deploy site (push) Successful in 30s
This commit is contained in:
parent
fbc4e25b9c
commit
ab847bbef7
1 changed files with 3 additions and 3 deletions
6
.github/workflows/deploy_site.yaml
vendored
6
.github/workflows/deploy_site.yaml
vendored
|
@ -12,9 +12,6 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: docker://git.korhonen.cc/functionalhacker/hugo-asciidoc-docker-ci:latest
|
||||
environment:
|
||||
name: github-pages
|
||||
url: ${{ steps.deployment.outputs.page_url }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
@ -30,6 +27,9 @@ jobs:
|
|||
path: /public
|
||||
|
||||
deploy:
|
||||
environment:
|
||||
name: github-pages
|
||||
url: ${{ steps.deployment.outputs.page_url }}
|
||||
name: Deploy site to GitHub Pages
|
||||
runs-on: ubuntu-latest
|
||||
needs: build
|
||||
|
|
Loading…
Reference in a new issue