Skip to content

Commit

Permalink
strip from checks and uploads
Browse files Browse the repository at this point in the history
  • Loading branch information
ggreif committed Sep 14, 2024
1 parent 866f3ac commit 5bac644
Showing 1 changed file with 0 additions and 51 deletions.
51 changes: 0 additions & 51 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,38 +13,12 @@ on:
- 'master'

jobs:
# first check that the changelog is in good order and extract the changelog
# This will fail for non-release tags.
changelog:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v4

- name: Get the version
id: get_version
run: echo version=${{ github.ref_name }} >> "$GITHUB_OUTPUT"

- name: Extract changelog
id: read_changelog
if: startsWith(github.ref, 'refs/tags/')
run: |
export VERSION='${{ steps.get_version.outputs.version }}'
perl -0777 -ne '/^# Motoko compiler changelog\n\n## (??{quotemeta($ENV{VERSION})}) \(\d\d\d\d-\d\d-\d\d\)\n\n(.*?)^##/sm or die "Changelog does not look right for this version\n" ; print $1' Changelog.md > changelog-extract.md
cat changelog-extract.md
# need to mangle to use with $GITHUB_OUTPUT (previously: set-output),
# see https://github.com/svenstaro/upload-release-action/blob/master/README.md
# under "Example for feeding a file from repo to the body tag"
echo "RELEASE_BODY=$(perl -0777 -p -e 's/%/%25/g; s/\n/%0A/g; s/\r/%0D/g' changelog-extract.md)" >> "$GITHUB_OUTPUT"
outputs:
release_body: ${{ steps.read_changelog.outputs.RELEASE_BODY }}

# Now build the release on both linux and darwin
build:
strategy:
matrix:
os: [ ubuntu-latest, macos-12 ]
needs: changelog
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand All @@ -65,28 +39,3 @@ jobs:
run: |
nix-build --max-jobs 1 --arg officialRelease true -A moc -A mo-ide -A mo-doc -A js.moc -A js.moc_interpreter
# Finally do the upload. Hopefully the previous job has uploaded the
# build product to the cachix cache, as we cannot build the darwin products on
# linux
release:
if: startsWith(github.ref, 'refs/tags/')
runs-on: 'ubuntu-latest'
needs: [ changelog, build ]
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v27
- uses: cachix/cachix-action@v15
with:
name: ic-hs-test
# NB: No auth token, we don’t expect to push new stuff here

- run: nix-build --max-jobs 1 --arg officialRelease true release-files.nix

- name: Upload Release Assets
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref }}
file: result/*
file_glob: true
body: ${{ needs.changelog.outputs.release_body }}

0 comments on commit 5bac644

Please sign in to comment.