Skip to content

Commit

Permalink
feat: add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mederka authored and chamini2 committed Dec 13, 2023
1 parent 3448116 commit bd6d660
Show file tree
Hide file tree
Showing 2 changed files with 152 additions and 0 deletions.
81 changes: 81 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
name: PyPI Release fal

on:
workflow_dispatch:
inputs:
version:
description: Version
required: false
default: patch
type: choice
options:
- patch
- minor
push:
branches:
# React to pushes to 'bump-proto-version-*' branch to release 'fal'
# whenever we have a new 'isolate-proto' version
- bump-proto-version-*

jobs:
release:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- uses: actions/setup-python@v2
with:
python-version: "3.9"

- name: Install poetry
shell: bash
run: pip install poetry-core=="1.4.*" poetry=="1.3.1"

- name: Add Datadog APP and API keys
env:
DATADOG_API_KEY: ${{ secrets.FAL_SERVERLESS_CLI_DD_API_KEY }}
DATADOG_APP_KEY: ${{ secrets.FAL_SERVERLESS_CLI_DD_APP_KEY }}
run: |
cat << "EOF" > src/fal/env.py
from __future__ import annotations
CLI_ENV = "prod"
DATADOG_API_KEY = "${{ env.DATADOG_API_KEY }}"
DATADOG_APP_KEY = "${{ env.DATADOG_APP_KEY }}"
EOF
- name: Bump publishing version and build
env:
VERSION_TYPE: ${{ github.event.inputs.version }}
run: |
if [ -z "$VERSION_TYPE" ]; then
echo "Version is not set, defaulting to 'patch'"
VERSION_TYPE='patch'
fi
poetry version $VERSION_TYPE
poetry build
- name: Publish PyPI
env:
PYPI_USERNAME: ${{ secrets.PYPI_USER }}
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: poetry publish -u $PYPI_USERNAME -p $PYPI_PASSWORD -v -n

- name: Bump repo version
run: |
poetry version prerelease
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
with:
branch: bump-fal-version
delete-branch: true
title: Bump the pyproject.toml version for fal
base: main
token: ${{ secrets.RELEASER_GITHUB_PAT }}
71 changes: 71 additions & 0 deletions .github/workflows/release_isolate_proto.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
name: PyPI Release isolate-proto

on:
workflow_dispatch:
inputs:
version:
description: Version
required: false
default: patch
type: choice
options:
- patch
- minor

jobs:
release:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
# To make actions trigger new workflow runs
token: ${{ secrets.RELEASER_GITHUB_PAT }}
fetch-depth: 0

- uses: actions/setup-python@v2
with:
python-version: "3.9"

- name: Install poetry
shell: bash
run: pip install poetry-core=="1.4.*" poetry=="1.3.1"

- name: Bump publishing version and build
working-directory: isolate_proto
env:
VERSION_TYPE: ${{ github.event.inputs.version }}
run: |
if [ -z "$VERSION_TYPE" ]; then
echo "Version is not set"
exit 1
fi
poetry version $VERSION_TYPE
poetry build
# set in GITHUB_ENV
ISOLATE_PROTO_VERSION=$(poetry version -s)
echo "ISOLATE_PROTO_VERSION=$ISOLATE_PROTO_VERSION"
echo "ISOLATE_PROTO_VERSION=$ISOLATE_PROTO_VERSION" >> $GITHUB_ENV
- name: Publish PyPI
env:
PYPI_USERNAME: ${{ secrets.PYPI_USER }}
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
working-directory: isolate_proto
run: poetry publish -u $PYPI_USERNAME -p $PYPI_PASSWORD -v -n

- name: Bump repo version
working-directory: isolate_proto
run: |
poetry version prerelease
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
with:
branch: bump-proto-version-${{ env.ISOLATE_PROTO_VERSION }}
delete-branch: true
title: Bump the pyproject.toml version for isolate-proto
base: main
token: ${{ secrets.RELEASER_GITHUB_PAT }}

0 comments on commit bd6d660

Please sign in to comment.