Skip to content

Commit

Permalink
Fix announce job
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander01998 committed Jan 22, 2025
1 parent cd659b1 commit a89f6d5
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/publish_snapshot_ports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,17 @@ jobs:
needs: [wurst, wi_zoom, mo_glass]
if: ${{ !failure() && !cancelled() && inputs.announce }}
steps:
- name: Announce snapshot ports
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"
cache-dependency-path: scripts/requirements.txt
- name: Install dependencies
run: pip install -r scripts/requirements.txt
- name: Run announce_snapshot_ports.py
run: |
python3 scripts/announce_snapshot_ports.py \
${{ github.event.inputs.snapshot }} \
Expand Down

0 comments on commit a89f6d5

Please sign in to comment.