automatically create bzlmod archive for release (#1230)

This commit is contained in:
Ezekiel Warren
2023-10-12 08:52:22 -07:00
committed by GitHub
parent 8106fcf1e5
commit 4fc5ec36bc

20
.github/workflows/bzlmod-archive.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
name: Bazel Release
on:
release:
types: [published]
jobs:
# A release archive is required for bzlmod
# See: https://blog.bazel.build/2023/02/15/github-archive-checksum.html
bazel-release-archive:
runs-on: ubuntu-latest
continue-on-error: true
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- run: git archive $GITHUB_REF -o "yaml-cpp-${GITHUB_REF:10}.tar.gz"
- run: gh release upload ${GITHUB_REF:10} "yaml-cpp-${GITHUB_REF:10}.tar.gz"
env:
GH_TOKEN: ${{ github.token }}