We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7578bc4 commit 950b804Copy full SHA for 950b804
.github/workflows/build-tzpb.yml
@@ -3,6 +3,12 @@ name: build-tzpb
3
on:
4
push:
5
branches: [main]
6
+ workflow_dispatch:
7
+ inputs:
8
+ timezone-boundary-version:
9
+ description: "Timezone boundary version to use"
10
+ required: false
11
+ default: "2025b"
12
13
jobs:
14
build-tzpb-pipeline:
@@ -21,6 +27,11 @@ jobs:
21
27
run: |
22
28
go run ./cmd/checkboundaryrelease/main.go >> $GITHUB_OUTPUT
23
29
30
+ - name: Set tag when provided
31
+ if: ${{ github.event.inputs.timezone-boundary-version != '' }}
32
+ run: |
33
+ echo TIMEZONE_BOUNDARY_VERSION=${{ github.event.inputs.timezone-boundary-version }} >> $GITHUB_ENV
34
+
24
35
- name: Set env
25
36
26
37
echo TIMEZONE_BOUNDARY_VERSION=${{ steps.set-latest-version.outputs.TIMEZONE_BOUNDARY_VERSION }} >> $GITHUB_ENV
0 commit comments