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 7c7ce9b commit 0e94002
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 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.9", "3.10"]
python-version: ["3.9", "3.10", "3.11"]

steps:
- name: 📥 Checkout the repository
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,22 @@ name: Create release
on:
push:
tags:
- "[0-9]*.[0-9]{2}.[0-9]{2}" # 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:
contents: write
steps:
# To use this repository's private action, you must check out the repository
- name: Checkout
uses: actions/checkout@v3

- name: Generate changelog
id: changelog
uses: metcalfc/[email protected]
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
mytoken: ${{ secrets.GITHUB_TOKEN }}

- name: Create Release
id: create_release
uses: actions/create-release@latest
Expand Down

0 comments on commit 0e94002

Please sign in to comment.