Skip to content

Commit cdf020f

Browse files
committed
.
1 parent 07f0e76 commit cdf020f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: .github/workflows/ami-release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
# - name: Build AMI
2020
# run: |
21-
# GIT_SHA=$(git rev-parse HEAD)
21+
# GIT_SHA=${{github.sha}}
2222
# packer build -var "git-head-version=${GIT_SHA}" -var "packer-execution-id=${GITHUB_RUN_ID}" -var-file="development-arm.vars.pkr.hcl" -var-file="common.vars.pkr.hcl" amazon-arm64.pkr.hcl
2323

2424
- name: Grab release version
@@ -31,15 +31,15 @@ jobs:
3131
3232
- name: echo output
3333
run: |
34-
echo "sha was ${{ steps.process_release_vesion.outputs.git_sha }}"
34+
echo "sha was ${{github.sha}} ${{ steps.process_release_vesion.outputs.git_sha }}"
3535
echo "version was ${{ steps.process_release_version.outputs.version }}"
3636
3737
- name: Create release
3838
uses: softprops/action-gh-release@v1
3939
with:
4040
name: ${{ steps.process_release_version.outputs.version }}
4141
tag_name: ${{ steps.process_release_version.outputs.version }}
42-
target_commitish: ${{ steps.process_release_vesion.outputs.git_sha }}
42+
target_commitish: ${{github.sha}}
4343

4444
- name: Slack Notification on Failure
4545
if: ${{ failure() }}

Diff for: common.vars.pkr.hcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
postgres-version = "15.1.0.34-rc0"
1+
postgres-version = "15.1.0.34-rc1"

0 commit comments

Comments
 (0)