|
41 | 41 | ./isthmus-cli/src/test/script/smoke.sh |
42 | 42 | ./isthmus-cli/src/test/script/tpch_smoke.sh |
43 | 43 | - name: Rename the artifact to OS-unique name |
44 | | - shell: bash |
45 | | - run: | |
46 | | - value=`mv isthmus-cli/build/native/nativeCompile/isthmus isthmus-cli/build/native/nativeCompile/isthmus-${{ matrix.os }}` |
| 44 | + working-directory: isthmus-cli/build/native/nativeCompile |
| 45 | + run: mv isthmus isthmus-${{ matrix.os }} |
47 | 46 | - name: Publish artifact |
48 | 47 | uses: actions/upload-artifact@v7 |
49 | 48 | with: |
@@ -86,18 +85,21 @@ jobs: |
86 | 85 | with: |
87 | 86 | name: isthmus-macOS-latest |
88 | 87 | path: native/libs |
89 | | - - name: Get bot user ID |
| 88 | + - name: Get bot user ID and email |
90 | 89 | id: bot-user-id |
91 | 90 | run: | |
92 | | - echo "user-id=$(gh api "/users/${{ steps.app-token.outputs.app-slug }}[bot]" --jq .id)" >> "$GITHUB_OUTPUT" |
| 91 | + slug="${{ steps.app-token.outputs.app-slug }}" |
| 92 | + user_id="$(gh api "/users/${slug}[bot]" --jq .id)" |
| 93 | + echo "user-id=${user_id}" >> "$GITHUB_OUTPUT" |
| 94 | + echo "email=${user_id}+${slug}[bot]@users.noreply.github.com" >> "$GITHUB_OUTPUT" |
93 | 95 | env: |
94 | 96 | GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} |
95 | 97 | - name: Run semantic-release |
96 | 98 | run: ./ci/release/run.sh |
97 | 99 | env: |
98 | 100 | GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} |
99 | | - GIT_AUTHOR_EMAIL: "${{ steps.bot-user-id.outputs.user-id }}+${{ steps.app-token.outputs.app-slug }}[bot]@users.noreply.github.com" |
100 | | - GIT_COMMITTER_EMAIL: "${{ steps.bot-user-id.outputs.user-id }}+${{ steps.app-token.outputs.app-slug }}[bot]@users.noreply.github.com" |
| 101 | + GIT_AUTHOR_EMAIL: ${{ steps.bot-user-id.outputs.email }} |
| 102 | + GIT_COMMITTER_EMAIL: ${{ steps.bot-user-id.outputs.email }} |
101 | 103 | SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }} |
102 | 104 | SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }} |
103 | 105 | SIGNING_KEY: ${{ secrets.SIGNING_KEY }} |
|
0 commit comments