Skip to content

Commit

Permalink
🐛 Broken Action workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
jorrick committed Jul 22, 2022
1 parent 3def682 commit 6b2f9a3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/auto-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Install package so we can read
run: pip install .
- name: 🐍 Python Auto Tagging
uses: Jorricks/action-python-autotagging@1.0.0
with:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/deploy-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
name: Check out source-code repository
- name: Check out source-code repository
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
Expand All @@ -21,6 +21,7 @@ jobs:
- name: Install Dependencies
run: flit install --symlink
- name: Publish
run: flit publish
env:
FLIT_USERNAME: __token__
FLIT_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
9 changes: 5 additions & 4 deletions .github/workflows/latest-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@ jobs:
latest-changes:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.ACTIONS_TOKEN }}
- uses: tiangolo/latest-changes:0.0.3
- name: Check out source-code repository
uses: actions/checkout@v2

- name: Update docs/release-notes.md with newest PR that was merged.
uses: docker://tiangolo/latest-changes:0.0.3
with:
token: ${{ secrets.GITHUB_TOKEN }}
latest_changes_file: docs/release-notes.md
Expand Down

0 comments on commit 6b2f9a3

Please sign in to comment.