REMOVE try to merge current commit #16
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish | |
on: | |
release: | |
types: [released] | |
push: | |
workflow_dispatch: # allows manual triggering | |
jobs: | |
webpage: | |
name: Update webpage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: release | |
- name: Configure git | |
run: | | |
git config user.name github-actions | |
git config user.email github-actions@github.com | |
- name: Merge master into release | |
run: git merge --no-edit ${{ github.ref_name }} | |
- name: Fetch latest release artifact | |
id: latest | |
env: | |
GH_TOKEN: ${{ github.token }} | |
run: | | |
gh release download -p '*.tar.gz' -D release | |
ls release | sed -ne 's/rules_haskell-\(.*\)[.]tar[.]gz/version=\1/p' >> "${GITHUB_OUTPUT}" | |
shasum -a 256 release/*.tar.gz | awk '{print "hash=" $1}' >> "${GITHUB_OUTPUT}" | |
- name: Update hash in start script and docs | |
run: | | |
sed -i \ | |
-e '/bazel_dep(name = "rules_haskell"/s/version = "[^"]*"/version = "${{ steps.latest.outputs.version }}"/' \ | |
start | |
# update http_archive attrs between `cat > WORKSPACE` and `EOF` | |
sed -i \ | |
-e '/cat > WORKSPACE/,/^EOF/{' \ | |
-e ' s%sha256 = "[^"]*"%sha256 = "${{ steps.latest.outputs.hash }}"%; ' \ | |
-e ' s%strip_prefix = "[^"]*"%strip_prefix = "rules_haskell-${{ steps.latest.outputs.version }}"%; ' \ | |
-e ' s%url = "[^"]*"%url = "https://github.com/tweag/rules_haskell/releases/download/v${{ steps.latest.outputs.version }}/rules_haskell-${{ steps.latest.outputs.version }}.tar.gz"%' \ | |
-e '}' \ | |
start | |
# update http_archive attrs in docs between `name = "rules_haskell"` and `url = "` | |
sed -i \ | |
-e '/name = "rules_haskell"/,/url = "/{' \ | |
-e ' s%sha256 = "[^"]*"%sha256 = "${{ steps.latest.outputs.hash }}"%; ' \ | |
-e ' s%strip_prefix = "[^"]*"%strip_prefix = "rules_haskell-${{ steps.latest.outputs.version }}"%; ' \ | |
-e ' s%url = "[^"]*"%url = "https://github.com/tweag/rules_haskell/releases/download/v${{ steps.latest.outputs.version }}/rules_haskell-${{ steps.latest.outputs.version }}.tar.gz"%; ' \ | |
-e '}' \ | |
docs/haskell-use-cases.rst | |
- name: Commit and Push | |
run: | | |
git diff | |
git add start docs/haskell-use-cases.rst | |
git commit -m "Update rules_haskell in start script and docs to version ${{ steps.latest.outputs.version }}" | |
git show | |
#git push |