Build and push the current package #50
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# terraform managed | |
--- | |
name: Build and push the current package | |
on: | |
release: | |
types: [created, edited, published, released] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: install Nix | |
uses: cachix/install-nix-action@v27 | |
- name: publish package with poetry | |
run: | | |
nix develop .#poetry --ignore-environment --keep PIPY_API_TOKEN --command ./scripts/publish.sh | |
env: | |
PIPY_API_TOKEN: ${{ secrets.PIPY_API_TOKEN }} |