Skip to content

Bump repairwheel to 0.2.8 to fix an issue targeting non-x86_64 linux … #8

Bump repairwheel to 0.2.8 to fix an issue targeting non-x86_64 linux …

Bump repairwheel to 0.2.8 to fix an issue targeting non-x86_64 linux … #8

Workflow file for this run

# Cut a release whenever a new tag is pushed to the repo.
# You should use an annotated tag, like `git tag -a v1.2.3`
# and put the release notes into the commit message for the tag.
name: Release
on:
push:
tags:
- "v*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: DamianReeves/write-file-action@master
with:
path: .bazelrc.ci
contents: ${{secrets.BAZELRC_CI}}
write-mode: overwrite
- name: bazel test //...
run: bazel test -- //...
- name: Prepare release
run: .github/workflows/release_prep.sh ${{ env.GITHUB_REF_NAME }} > release_notes.txt
- name: Release
uses: softprops/action-gh-release@v1
with:
prerelease: true
# Use GH feature to populate the changelog automatically
generate_release_notes: true
body_path: release_notes.txt
files: rules_pycross-*.tar.gz
fail_on_unmatched_files: true