Skip to content

Commit b606ea9

Browse files
authored
build using Python 3.14 (#319)
1 parent 820e4a9 commit b606ea9

File tree

6 files changed

+12
-625
lines changed

6 files changed

+12
-625
lines changed

.github/workflows/deploy.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- uses: actions/checkout@v5
21-
- name: Set up Python 3.12
21+
- name: Set up Python 3.14
2222
uses: actions/setup-python@v6
2323
with:
24-
python-version: "3.12"
24+
python-version: "3.14"
2525
- name: Install deps
2626
run: pip install gitpython docker
2727
- name: Download
@@ -35,7 +35,7 @@ jobs:
3535
aws-region: us-east-2
3636
role-to-assume: arn:aws:iam::977611293394:role/dvc-s3-repo-deploy-${{ matrix.pkg }}
3737
- name: Upload
38-
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
38+
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' && startsWith(github.event.head_commit.message, 'updated dvc to') }}
3939
env:
4040
GPG_ITERATIVE_ASC: ${{ secrets.GPG_ITERATIVE_ASC }}
4141
GPG_ITERATIVE_PASS: ${{ secrets.GPG_ITERATIVE_PASS }}

.github/workflows/update.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
id: create-pr
3434
uses: peter-evans/create-pull-request@v7
3535
with:
36-
commit-message: dvc ${{ steps.latest.outputs.version }}
36+
commit-message: updated dvc to ${{ steps.latest.outputs.version }}
3737
title: dvc ${{ steps.latest.outputs.version }}
3838
# token: ${{ secrets.OLIVAW_PAT }}
3939
# author: Iterative Olivaw <[email protected]>

0 commit comments

Comments
 (0)