Skip to content

Commit f805f2f

Browse files
authored
ci: build-ami: Use arch in EXECUTION_ID (#2209)
Both run_id and postgres_version are same for both amd64 and arm64 matrix variants. I'm not exactly sure what the effects of sharing EXECUTION_IDs could be but Release AMI Nix already does it so lets assume its for a good reason. Something to untangle later.
1 parent 945dfc1 commit f805f2f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/actions/build-ami/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ runs:
4949
id: set-execution-id
5050
shell: bash
5151
run: |
52-
EXECUTION_ID="${{ github.run_id }}-${{ inputs.postgres_version }}"
52+
EXECUTION_ID="${{ github.run_id }}-${{ inputs.postgres_version }}-${{ inputs.arch }}"
5353
echo "EXECUTION_ID=$EXECUTION_ID" >> $GITHUB_ENV
5454
echo "execution_id=$EXECUTION_ID" >> $GITHUB_OUTPUT
5555

0 commit comments

Comments
 (0)