Skip to content

Commit

Permalink
Merge pull request #362 from mavlink/pr-fix-deploy
Browse files Browse the repository at this point in the history
CI: fix deploy
  • Loading branch information
julianoes authored Jan 20, 2025
2 parents 97cf632 + 78fceea commit 194b668
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ on:
jobs:
prototool:
name: prototool linter
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v1
- name: Run prototool
run: docker run -v "$(pwd):/work" uber/prototool:1.10.0 prototool lint protos

deploy:
name: deploy
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v1
- name: Install prerequisites
Expand All @@ -37,8 +37,8 @@ jobs:
retention-days: 2
- name: Deploy to PyPi
env:
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
TWINE_NON_INTERACTIVE: 1
if: startsWith(github.ref, 'refs/tags/')
run: |
Expand Down

0 comments on commit 194b668

Please sign in to comment.