Release #7
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: Release | |
'on': | |
workflow_dispatch: null | |
push: | |
tags: | |
- '*' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.13" | |
- run: sudo bash -c "curl --fail -L -o /usr/bin/buildifier https://github.com/bazelbuild/buildtools/releases/download/v7.3.1/buildifier-linux-amd64 && chmod 0755 /usr/bin/buildifier" | |
- run: git clone https://github.com/illicitonion/bazel-central-registry.git /tmp/outs/bcr_dir && (cd /tmp/outs/bcr_dir && git checkout openssl) | |
- run: python3 generate.py --bcr_dir=/tmp/outs/bcr_dir --overlay_tar_path=$(pwd)/bazel-openssl-cc-${{github.ref_name}}.tar.gz --tag=${{github.ref_name}} | |
- run: tar czf bcr-patch.tar.gz /tmp/outs/bcr_dir/modules/openssl/ | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: | | |
bcr-patch.tar.gz | |
bazel-openssl-cc-${{github.ref_name}}.tar.gz |