Skip to content

Commit

Permalink
Merge pull request #2 from alphagov/release-workflow
Browse files Browse the repository at this point in the history
Add standard GOV.UK release workflow to Github Actions
  • Loading branch information
csutter authored Aug 31, 2023
2 parents 588c086 + a85dd22 commit c75d05d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Release

on:
workflow_dispatch:
workflow_run:
workflows: [CI]
types: [completed]
branches: [main]

jobs:
release:
if: github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success'
name: Release
uses: alphagov/govuk-infrastructure/.github/workflows/release.yml@main
secrets:
GH_TOKEN: ${{ secrets.GOVUK_CI_GITHUB_API_TOKEN }}

0 comments on commit c75d05d

Please sign in to comment.