Skip to content

Commit 2e6fc57

Browse files
pvcravenPaul V Craven
and
Paul V Craven
authored
Split github action versions (#2517)
* Split bump/deploy github actions * Rename bump action * Update to require specific tag --------- Co-authored-by: Paul V Craven <[email protected]>
1 parent c77ab1a commit 2e6fc57

File tree

2 files changed

+30
-19
lines changed

2 files changed

+30
-19
lines changed

.github/workflows/bump_version.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Bump Version
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
# --- Bump version
8+
bump-version:
9+
10+
runs-on: ubuntu-latest
11+
environment: deploy-pypi-test
12+
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v4
16+
with:
17+
token: ${{ secrets.MY_TOKEN }}
18+
- name: Bump versions
19+
uses: remorses/bump-version@js
20+
with:
21+
version_file: ./arcade/VERSION
22+
prerelease_tag: rc
23+
env:
24+
GITHUB_TOKEN: ${{ secrets.MY_TOKEN }}

.github/workflows/push_build_to_prod_pypi.yml

+6-19
Original file line numberDiff line numberDiff line change
@@ -2,38 +2,25 @@ name: Distribute build to PyPi Production
22

33
on:
44
workflow_dispatch:
5+
inputs:
6+
tag:
7+
description: 'Tag to deploy'
8+
required: true
9+
type: string
510

611
jobs:
7-
# --- Bump version
8-
bump-version:
9-
10-
runs-on: ubuntu-latest
11-
environment: deploy-pypi-test
12-
13-
steps:
14-
- name: Checkout code
15-
uses: actions/checkout@v4
16-
with:
17-
token: ${{ secrets.MY_TOKEN }}
18-
- name: Bump versions
19-
uses: remorses/bump-version@js
20-
with:
21-
version_file: ./arcade/VERSION
22-
prerelease_tag: rc
23-
env:
24-
GITHUB_TOKEN: ${{ secrets.MY_TOKEN }}
2512

2613
# --- Deploy to pypi
2714
deploy-to-pypi-prod:
2815

2916
runs-on: ubuntu-latest
3017
environment: deploy-pypi-prod
31-
needs: bump-version
3218
steps:
3319
- name: Checkout
3420
uses: actions/checkout@v4
3521
with:
3622
fetch-tags: 'true'
23+
ref: ${{ github.event.inputs.tag }}
3724
- name: Set up Python
3825
uses: actions/setup-python@v5
3926
with:

0 commit comments

Comments
 (0)