We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4772a60 commit a96e9daCopy full SHA for a96e9da
.github/workflows/build.yaml
@@ -22,7 +22,7 @@ jobs:
22
- name: Prepare tag
23
run: |
24
PREFIX=${{ inputs.is_dataproc == false && 'local-' || '' }}
25
- TAG="${PREFIX}$(echo $TAG | sed 's/^v//')"
+ TAG="${PREFIX}$(echo $TAG | sed 's/^v//' | sed 's/\//-/g')"
26
echo "TAG=$TAG" >> $GITHUB_ENV
27
echo "The tag for this build is $TAG"
28
- uses: actions/checkout@v4
.github/workflows/pr.yaml
@@ -0,0 +1,14 @@
1
+name: Pull Request
2
+
3
+on:
4
+ pull_request:
5
6
+jobs:
7
+ ci:
8
+ uses: ./.github/workflows/ci.yaml
9
10
+ build:
11
+ needs: ci
12
+ uses: ./.github/workflows/build.yaml
13
+ with:
14
+ is_dataproc: true
0 commit comments