Skip to content

Commit

Permalink
Experiment with a release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewFluet committed Dec 22, 2024
1 parent 18add0c commit 39268f5
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Release

on:
release:
types: [published]
workflow_dispatch:

jobs:
mlton-version:
runs-on: ubuntu-24.04
outputs:
mlton-version: ${{ steps.mlton-version.outputs.mlton-version }}
steps:
- name: mlton-version
id: mlton-version
run: |
MLTON_VERSION=$( echo '${{ github.ref_name }}' | sed -En 's;on-([0-9]{8})-release;\1;p')
if [ -n "${MLTON_VERSION}" ]; then echo "mlton-version=${MLTON_VERSION}" >> "$GITHUB_OUTPUT"; else echo "Unable to determine MLTON_VERSION"; exit 1; fi
source-release:
needs: mlton-version
uses: ./.github/workflows/source-release.yml
with:
mlton-version: ${{ needs.mlton-version.outputs.mlton-version }}
secrets: inherit
33 changes: 33 additions & 0 deletions .github/workflows/source-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Source Release

on:
workflow_dispatch:
inputs:
mlton-version:
required: true
type: string
workflow_call:
inputs:
mlton-version:
required: true
type: string

jobs:
source-release:
runs-on: ubuntu-latest
env:
MLTON_VERSION: ${{ inputs.mlton-version }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: on-${{ inputs.mlton-version }}-release
fetch-depth: 0
- name: Install guide dependencies
uses: ./.github/actions/install-guide-dependencies
- name: Make source release
run: make MLTON_VERSION=${MLTON_VERSION} source-release
- name: Upload source release
run: gh release upload on-${MLTON_VERSION}-release mlton-${MLTON_VERSION}.src.tgz --clobber
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 39268f5

Please sign in to comment.