Skip to content

Initial publishing of site from tarball #1

Initial publishing of site from tarball

Initial publishing of site from tarball #1

Workflow file for this run

# Workflow for building and deploying a tarball of a static site to GitHub Pages
name: Deploy Tarball archive static site to Pages
on:
push:
branches:
- '*'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
# Default to bash
defaults:
run:
shell: bash
jobs:
# Prep job
prep:
runs-on: ubuntu-latest
- name: Download and extract website tarball

Check failure on line 33 in .github/workflows/gh-pages.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/gh-pages.yml

Invalid workflow file

You have an error in your yaml syntax on line 33
run: |
# TODO curl -fsSL -o
tar xvf docs-idemproject-io.tar.gz
mv docs-idemproject-io public
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./public
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
# if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4