Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Release

on:
workflow_dispatch:
inputs:
dry-run:
description: "Only create an archive containing the release instead of publishing it on GitHub"
type: boolean
required: false
default: false
force:
description: "Allow overwriting an existing release, or making a release with an incorrect date"
type: boolean
required: false
default: false

permissions: write-all

jobs:
release:
name: "Release the GAP package"
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: gap-actions/setup-gap@v2
with:
GAP_PKGS_TO_BUILD: json
- uses: gap-actions/build-pkg-docs@v1
with:
use-latex: true
- uses: gap-actions/release-pkg@v1
with:
dry-run: ${{ inputs.dry-run }}
force: ${{ inputs.force }}
- uses: gap-actions/update-gh-pages@v1
if: ${{ !inputs.dry-run }}
Loading