Skip to content

Commit f3a4a46

Browse files
committed
revert deletion
1 parent d21be0e commit f3a4a46

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/build-postgres.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,38 +17,38 @@ jobs:
1717
build-osx:
1818
runs-on: macos-latest
1919
steps:
20-
- run: echo build event.tag ${{ github.event.inputs.tag }}${{ inputs.tag }}
20+
- run: echo build event.tag ${{ inputs.tag }}
2121
- name: Check out postgres code
2222
uses: actions/checkout@v4
2323
with:
2424
repository: postgres/postgres
25-
ref: refs/tags/${{ github.event.inputs.tag }}${{ inputs.tag }}
25+
ref: refs/tags/${{ inputs.tag }}
2626
fetch-tags: true
2727
- run: curl https://raw.githubusercontent.com/eitco/build-postgres/${{ github.ref_name }}/build.sh > build.sh && chmod +x build.sh
28-
- run: ./build.sh "${{ github.event.inputs.tag }}${{ inputs.tag }}" osx
28+
- run: ./build.sh "${{ inputs.tag }}" osx
2929
- uses: ncipollo/[email protected]
3030
with:
31-
name: "postgres-${{ github.event.inputs.tag }}${{ inputs.tag }}-osx"
32-
body: "postgres ${{ github.event.inputs.tag }}${{ inputs.tag }} osx"
31+
name: "postgres-${{ inputs.tag }}-osx"
32+
body: "postgres ${{ inputs.tag }} osx"
3333
artifacts: "postgres-*-osx.tar.gz,COPYRIGHT"
34-
tag: ${{ github.event.inputs.tag }}${{ inputs.tag }}-osx
34+
tag: ${{ inputs.tag }}-osx
3535
commit: ${{ github.ref_name }}
3636
build-linux-64:
3737
runs-on: ubuntu-latest
3838
steps:
39-
- run: echo build event.tag ${{ github.event.inputs.tag }}${{ inputs.tag }}
39+
- run: echo build event.tag ${{ inputs.tag }}
4040
- name: Check out postgres code
4141
uses: actions/checkout@v4
4242
with:
4343
repository: postgres/postgres
44-
ref: refs/tags/${{ github.event.inputs.tag }}${{ inputs.tag }}
44+
ref: refs/tags/${{ inputs.tag }}
4545
fetch-tags: true
4646
- run: curl https://raw.githubusercontent.com/eitco/build-postgres/${{ github.ref_name }}/build.sh > build.sh && chmod +x build.sh
47-
- run: ./build.sh "${{ github.event.inputs.tag }}${{ inputs.tag }}" linux-64
47+
- run: ./build.sh "${{ inputs.tag }}" linux-64
4848
- uses: ncipollo/[email protected]
4949
with:
50-
name: "postgres-${{ github.event.inputs.tag }}${{ inputs.tag }}-linux-64"
51-
body: "postgres ${{ github.event.inputs.tag }}${{ inputs.tag }} linux-64"
50+
name: "postgres-${{ inputs.tag }}-linux-64"
51+
body: "postgres ${{ inputs.tag }} linux-64"
5252
artifacts: "postgres-*-linux-64.tar.gz,COPYRIGHT"
53-
tag: ${{ github.event.inputs.tag }}${{ inputs.tag }}-linux-64
53+
tag: ${{ inputs.tag }}-linux-64
5454
commit: ${{ github.ref_name }}

0 commit comments

Comments
 (0)