Skip to content

Commit

Permalink
Merge branch 'main' of github.com:zauberzeug/nicegui
Browse files Browse the repository at this point in the history
  • Loading branch information
falkoschindler committed Aug 13, 2024
2 parents adf24d4 + 332f4e1 commit c01d052
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 12 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,11 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: set up Poetry
uses: abatilo/actions-poetry@v2.0.0
with:
poetry-version: "1.3.1"
uses: abatilo/actions-poetry@v3
- name: get version
id: get_version
run: echo "VERSION=$(echo ${GITHUB_REF/refs\/tags\//})" >> $GITHUB_ENV
Expand All @@ -30,7 +28,7 @@ jobs:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }}
run: poetry publish --build
- name: Create GitHub release entry
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
id: create_release
with:
draft: true
Expand Down Expand Up @@ -79,7 +77,7 @@ jobs:
platforms: all
- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
Expand All @@ -89,7 +87,7 @@ jobs:
with:
install: true
- name: Build
uses: docker/build-push-action@v2
uses: docker/build-push-action@v6
with:
context: .
file: ./release.dockerfile
Expand Down Expand Up @@ -119,7 +117,7 @@ jobs:
ref: main

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.11

Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: set up Poetry
uses: abatilo/actions-poetry@v2.0.0
with:
poetry-version: "1.6.1"
uses: abatilo/actions-poetry@v3
- name: install dependencies
run: |
set -x
Expand Down

0 comments on commit c01d052

Please sign in to comment.