Merge pull request #29 from jku/release-0.0.1 #1
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 | |
concurrency: release | |
on: | |
push: | |
tags: | |
- v* | |
permissions: {} | |
jobs: | |
build-signer: | |
name: Build tuf-on-ci signer | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 | |
- uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 | |
with: | |
python-version: '3.11' | |
- name: Install build dependencies | |
run: python3 -m pip install build | |
- name: Build binary wheel and source tarball | |
run: python3 -m build --sdist --wheel --outdir dist/ signer/ | |
- name: Store build artifacts | |
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce | |
with: | |
name: signer-artifacts | |
path: dist | |
release-pypi: | |
name: Release Signer on PyPI | |
runs-on: ubuntu-latest | |
needs: build-signer | |
environment: release | |
permissions: | |
id-token: write # to authenticate as Trusted Publisher to pypi.org | |
steps: | |
- name: Fetch build artifacts | |
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a | |
with: | |
name: signer-artifacts | |
path: dist | |
- name: Publish binary wheel and source tarball on PyPI | |
if: github.repository == 'theupdateframework/tuf-on-ci' | |
uses: pypa/gh-action-pypi-publish@f8c70e705ffc13c3b4d1221169b84f12a75d6ca8 | |
release-gh: | |
name: Release | |
runs-on: ubuntu-latest | |
needs: release-pypi | |
permissions: | |
contents: write # to modify GitHub releases | |
steps: | |
- name: Fetch build artifacts | |
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a | |
with: | |
name: signer-artifacts | |
path: dist | |
- name: Make a GitHub release | |
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 | |
with: | |
script: | | |
fs = require('fs') | |
res = await github.rest.repos.createRelease({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
name: '${{ github.ref_name }}', | |
tag_name: '${{ github.ref }}', | |
body: 'See [CHANGELOG.md](https://github.com/' + | |
context.repo.owner + '/' + context.repo.repo + | |
'/blob/${{ github.ref_name }}/docs/CHANGELOG.md) for details.' | |
}) | |
fs.readdirSync('dist/').forEach(file => { | |
github.rest.repos.uploadReleaseAsset({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
release_id: res.data.id, | |
name: file, | |
data: fs.readFileSync('dist/' + file), | |
}); | |
}); |