Skip to content

Publish release branch or SemVer tags #15

Publish release branch or SemVer tags

Publish release branch or SemVer tags #15

Workflow file for this run

name: Release
run-name: Publish release branch or SemVer tags
on:
workflow_dispatch:
push:
tags:
- 'v[0-9]+.[0-9]+.*'
branches:
- website
- release/**
- devops
# Cancel any other running workflows with the same ID
concurrency:
group: cd-release-${{ github.ref }}
cancel-in-progress: true
# https://docs.github.com/en/actions/using-workflows/reusing-workflows
jobs:
version:
uses: ./.github/workflows/_version.yml
with:
appProjectName: "Bible.Web"
publish:
if: ${{ github.event_name != 'pull_request' }}
needs: version
uses: ./.github/workflows/_build-deploy.yml
with:
project-name: "Bible.Web"
project-version: ${{ needs.version.outputs.semVer }}
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
secrets: inherit