Skip to content

Commit

Permalink
Update git actions
Browse files Browse the repository at this point in the history
  • Loading branch information
cyr-ius committed Nov 19, 2023
1 parent 60167c8 commit 823a13c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
max-parallel: 2
matrix:
python-version: ["3.10","3.11"]
python-version: ["3.9", "3.10", "3.11"]

steps:
- name: 📥 Checkout the repository
Expand Down
15 changes: 8 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,22 @@ name: Create release
on:
push:
tags:
- "*.*.*" # Push events to matching i.e. 1.0.0, 4.0.1
- "[0-9]+.[0-9]+.[0-9]+" # Push events to matching i.e. 1.0.0, 4.0.1
jobs:
release:
runs-on: ubuntu-latest
permissions:
write-all
contents: write
steps:
# To use this repository's private action, you must check out the repository
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3

- name: Generate changelog
id: changelog
uses: metcalfc/changelog-generator@v4.2.0
uses: metcalfc/changelog-generator@v4.1.0
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
mytoken: ${{ secrets.GITHUB_TOKEN }}

- name: Create Release
id: create_release
uses: actions/create-release@latest
Expand All @@ -27,4 +28,4 @@ jobs:
release_name: ${{ github.ref }}
body: ${{ steps.changelog.outputs.changelog }}
draft: false
prerelease: true
prerelease: false

0 comments on commit 823a13c

Please sign in to comment.