From 1f7a26c0e4d5e321aa378ee7433412ca7bd08179 Mon Sep 17 00:00:00 2001 From: John Ed Quinn Date: Thu, 4 Jan 2024 14:35:32 -0800 Subject: [PATCH] Fixes GH Actions workflows --- .github/workflows/on_pull_request.yml | 2 +- .github/workflows/on_release.yml | 30 --------------------------- 2 files changed, 1 insertion(+), 31 deletions(-) delete mode 100644 .github/workflows/on_release.yml diff --git a/.github/workflows/on_pull_request.yml b/.github/workflows/on_pull_request.yml index f5fab852f..d54ffd2c0 100644 --- a/.github/workflows/on_pull_request.yml +++ b/.github/workflows/on_pull_request.yml @@ -8,7 +8,7 @@ on: [pull_request] jobs: build_via_pandoc: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 diff --git a/.github/workflows/on_release.yml b/.github/workflows/on_release.yml deleted file mode 100644 index c44eac7ee..000000000 --- a/.github/workflows/on_release.yml +++ /dev/null @@ -1,30 +0,0 @@ -# Builds documentation and deplouys to gh-pages branch -# URL should be -# https://partiql.github.io/partiql-lang-kotlin/user-guide.html -# https://partiql.github.io/partiql-lang-kotlin/user-guide.pdf -# https://partiql.github.io/partiql-lang-kotlin/dev-guide.html -# https://partiql.github.io/partiql-lang-kotlin/dev-guide.pdf -# https://partiql.github.io/partiql-lang-kotlin/tutorial.html -# https://partiql.github.io/partiql-lang-kotlin/tutorial.pdf -name: Release Documentation - -on: - release: - types: [published,prereleased] - -jobs: - build_via_pandoc: - runs-on: ubuntu-18.04 - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Build - uses: docker://partiqlteam/pandoc:1.0 - with: - entrypoint: ./docker-entrypoint.sh - - name: Deploy - uses: JamesIves/github-pages-deploy-action@releases/v3 - with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - BRANCH: gh-pages # The branch the action should deploy to. - FOLDER: docs/webapp # The folder the action should deploy.