Skip to content

Commit

Permalink
update release.yml gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Jannik Eilers committed Jun 10, 2024
1 parent 4510610 commit e9000c1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.10

- name: Install dependencies
run: |
Expand All @@ -79,7 +79,7 @@ jobs:
poetry build
- name: publish to Test PyPI
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.TEST_PYPI_API_TOKEN}}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ jobs:
# This workflow contains a single job called "build"
release:
name: Create Release
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

strategy:
matrix:
python-versions: [3.8]
python-versions: [3.10]

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: generate change log
uses: heinrichreimer/github-changelog-generator-action@v2.1.1
uses: heinrichreimer/github-changelog-generator-action@v2.3
with:
token: ${{ secrets.GITHUB_TOKEN }}
issues: true
Expand All @@ -42,7 +42,7 @@ jobs:
output: CHANGELOG.md
sinceTag: v0.1.0

- uses: actions/setup-python@v2
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-versions }}

Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
draft: false
prerelease: false

- name:
- name: publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
Expand Down

0 comments on commit e9000c1

Please sign in to comment.