don't filter on metadata update, we actually want it to run consistently #20
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
name: Release Steps | |
on: | |
push: | |
tags: | |
- '*' | |
concurrency: | |
group: "${{ github.workflow }}-${{ github.ref }}" | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v3 | |
with: | |
# Retrieves all commit history for path filter checking | |
fetch-depth: 0 | |
- name: setup Python 3.9 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: install Poetry | |
uses: snok/[email protected] | |
- name: configure pypi credentials | |
run: poetry config pypi-token.pypi "${{ secrets.PYPI_API_KEY }}" | |
- name: Publish package | |
run: poetry publish --build | |
- name: install dependencies | |
run: poetry install | |
- name: update metadata | |
env: | |
DATABASE_URL: ${{ secrets.OPENSTATES_DATABASE_URL }} | |
run: poetry run os-initdb |