Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix version cut #15

Merged
merged 21 commits into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 17 additions & 13 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,11 @@ jobs:
src: './tb_pulumi'
args: 'format --check'

# debug:
# needs: detect-versions
# runs-on: ubuntu-latest
# steps:
# - name: Debug
# uses: mxschmitt/action-tmate@v3
debug:
needs: detect-versions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

# When the PR gets merged, cut a new version branch.
merge:
Expand All @@ -102,11 +101,16 @@ jobs:
contents: write
steps:
- uses: actions/checkout@v4

- name: Create a new version branch
uses: peterjgrainger/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
branch: ${{ needs.detect-versions.outputs.version }}
sha: ${GITHUB_SHA}
fetch-depth: 0

- name: Debug
uses: mxschmitt/action-tmate@v3

# - name: Create a new version branch
# uses: peterjgrainger/[email protected]
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# branch: ${{ needs.detect-versions.outputs.version }}
# sha: ${GITHUB_SHA}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "tb_pulumi"
version = "0.0.3-jungtest5"
version = "0.0.3-jungtest1"
description = "Framework and patterns for using Pulumi at Thunderbird"
requires-python = ">3.12"
dynamic = ["dependencies"]
Expand Down
Loading