fix: release yml file #25
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: | |
push: | |
branches: | |
- 'main' | |
tags: | |
- 'v*.*.*' | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build JSON Schema and Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12.4' | |
- name: Install Poetry | |
uses: abatilo/actions-poetry@v3 | |
with: | |
poetry-version: '1.8.3' | |
- name: Setup a local virtual environment (if no poetry.toml file) | |
run: | | |
poetry config virtualenvs.in-project true | |
poetry config virtualenvs.in-project true --local | |
- uses: actions/cache@v4 | |
name: Cache Poetry virtualenv | |
with: | |
path: ./.venv | |
key: venv-${{ hashFiles('poetry.lock') }} | |
- name: Install dependencies | |
run: poetry install | |
- name: Build JSON Schema | |
run: | | |
poetry run python jsonSchemas/main.py | |
- name: Compress Sha256 Hashes to Zip & Tar | |
run: | | |
zip -r dist/shas.zip dist/shas | |
tar -czvf dist/shas.tar.gz dist/shas | |
- name: Generate A Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
dist/*.json | |
dist/shas.zip | |
dist/shas.tar.gz |