@@ -17,38 +17,38 @@ jobs:
17
17
build-osx :
18
18
runs-on : macos-latest
19
19
steps :
20
- - run : echo build event.tag ${{ github.event.inputs.tag }}${{ inputs.tag }}
20
+ - run : echo build event.tag ${{ inputs.tag }}
21
21
- name : Check out postgres code
22
22
uses : actions/checkout@v4
23
23
with :
24
24
repository : postgres/postgres
25
- ref : refs/tags/${{ github.event.inputs.tag }}${{ inputs.tag }}
25
+ ref : refs/tags/${{ inputs.tag }}
26
26
fetch-tags : true
27
27
- 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
29
29
-
uses :
ncipollo/[email protected]
30
30
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"
33
33
artifacts : " postgres-*-osx.tar.gz,COPYRIGHT"
34
- tag : ${{ github.event.inputs.tag }}${{ inputs.tag }}-osx
34
+ tag : ${{ inputs.tag }}-osx
35
35
commit : ${{ github.ref_name }}
36
36
build-linux-64 :
37
37
runs-on : ubuntu-latest
38
38
steps :
39
- - run : echo build event.tag ${{ github.event.inputs.tag }}${{ inputs.tag }}
39
+ - run : echo build event.tag ${{ inputs.tag }}
40
40
- name : Check out postgres code
41
41
uses : actions/checkout@v4
42
42
with :
43
43
repository : postgres/postgres
44
- ref : refs/tags/${{ github.event.inputs.tag }}${{ inputs.tag }}
44
+ ref : refs/tags/${{ inputs.tag }}
45
45
fetch-tags : true
46
46
- 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
48
48
-
uses :
ncipollo/[email protected]
49
49
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"
52
52
artifacts : " postgres-*-linux-64.tar.gz,COPYRIGHT"
53
- tag : ${{ github.event.inputs.tag }}${{ inputs.tag }}-linux-64
53
+ tag : ${{ inputs.tag }}-linux-64
54
54
commit : ${{ github.ref_name }}
0 commit comments