Skip to content

Commit

Permalink
fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jantman committed Dec 1, 2024
1 parent 5e29eb9 commit 6f673ac
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: python -m pip install --upgrade pip && pip install poetry && poetry install
- name: Get Version
id: get-version
run: poetry version -s
run: echo "APP_VERSION=$(poetry version -s)" >> $GITHUB_OUTPUT
- name: Ensure tag matches version
if: github.ref_name != steps.get-version.outputs.APP_VERSION
run: |
Expand Down Expand Up @@ -58,6 +58,9 @@ jobs:
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: Release ${{ github.ref_name }}
body: |
Release ${{ github.ref_name }}.
Docker images: https://github.com/users/jantman/packages/container/package/machine-access-control
Python packages: https://pypi.org/project/machine_access_control/
draft: false
prerelease: false

0 comments on commit 6f673ac

Please sign in to comment.