Skip to content

Commit

Permalink
Add initial version of flyteidl-beta-release.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Eduardo Apolinario <[email protected]>
  • Loading branch information
eapolinario committed Jul 31, 2024
1 parent 025296a commit 0ef7b84
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/flyteidl-beta-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Flyteidl beta releases on merges to master

on:
push:
branches:
- master
paths:
- flyteidl/**

jobs:
create-flyteidl-beta-tag:
runs-on: ubuntu-latest
defaults:
run:
working-directory: flyteidl
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools-scm
- name:
TAG=python -m setuptools_scm

0 comments on commit 0ef7b84

Please sign in to comment.