mirror of
https://github.com/Neargye/magic_enum.git
synced 2026-01-09 23:34:23 +00:00
19 lines
620 B
YAML
19 lines
620 B
YAML
name: Bzlmod Archive
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
# A release archive is required for bzlmod
|
|
# See: https://blog.bazel.build/2023/02/15/github-archive-checksum.html
|
|
upload-archive:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
- run: git archive -o "${{ format('{0}-{1}.tar.gz', github.event.repository.name, github.event.release.tag_name) }}" HEAD
|
|
- run: gh release upload ${{ github.event.release.tag_name }} *.tar.gz
|
|
env:
|
|
GH_TOKEN: ${{ github.token }}
|