-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version bump, plus release record action
- Loading branch information
Paige Gulley
committed
Oct 10, 2024
1 parent
36e358b
commit f7f100d
Showing
3 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -94,6 +94,29 @@ jobs: | |
gh release upload | ||
'${{ github.ref_name }}' dist/** | ||
--repo '${{ github.repository }}' | ||
report-to-airflow: | ||
name: Report Successfull Release to Airflow | ||
needs: | ||
- publish-to-pypi | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Install mc-manage package | ||
run: | | ||
pip install git+https://github.com/mediacloud/[email protected] | ||
- name: Get tag name | ||
id: extract_tag | ||
run: echo "TAG_NAME=${GITHUB_REF##*/}" >> $GITHUB_ENV | ||
|
||
- name: Record successful release | ||
run: | | ||
python -m mc-manage.airtable-release-update --name mc-providers --version ${{ env.TAG_NAME }} | ||
env: | ||
AIRTABLE_API_KEY: ${{ secrets.AIRTABLE_API_KEY }} | ||
MEAG_BASE_ID: ${{ secrets.MEAG_BASE_ID }} | ||
|
||
|
||
publish-to-testpypi: | ||
name: Publish Python 🐍 distribution 📦 to TestPyPI | ||
needs: | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi" | |
|
||
[project] | ||
name = "mc-providers" | ||
version = "2.1.1" | ||
version = "2.2.0" | ||
authors = [ | ||
{name = "Paige Gulley", email = "[email protected]"}, | ||
{name = "Rahul Bhargava", email = "[email protected]"}, | ||
|