mirror of https://github.com/actions/toolkit
BEtter tag format
parent
d32efbf702
commit
2159b716f6
|
@ -19,7 +19,7 @@ jobs:
|
||||||
- id: commit
|
- id: commit
|
||||||
run: echo "sha=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT"
|
run: echo "sha=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT"
|
||||||
- id: tag
|
- id: tag
|
||||||
run: echo "tag=${{ github.event.inputs.package }}-$(cat packages/${{ github.event.inputs.package }}/package.json | jq .version)" >> "$GITHUB_OUTPUT"
|
run: echo "tag=@actions/${{ github.event.inputs.package }}@$(cat packages/${{ github.event.inputs.package }}/package.json | jq .version)" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
- name: verify package exists
|
- name: verify package exists
|
||||||
run: ls packages/${{ github.event.inputs.package }}
|
run: ls packages/${{ github.event.inputs.package }}
|
||||||
|
@ -84,7 +84,7 @@ jobs:
|
||||||
env:
|
env:
|
||||||
SLACK_WEBHOOK: ${{ secrets.SLACK }}
|
SLACK_WEBHOOK: ${{ secrets.SLACK }}
|
||||||
tag:
|
tag:
|
||||||
name: "Tag commit with ${{ github.event.inputs.package }}-version"
|
name: "Tag ${{ needs.test.outputs.sha }} with ${{ needs.test.outputs.tag }}"
|
||||||
runs-on: "macos-latest"
|
runs-on: "macos-latest"
|
||||||
needs: [test, publish]
|
needs: [test, publish]
|
||||||
steps:
|
steps:
|
||||||
|
|
|
@ -14,7 +14,7 @@ jobs:
|
||||||
- id: commit
|
- id: commit
|
||||||
run: echo "sha=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT"
|
run: echo "sha=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT"
|
||||||
- id: tag
|
- id: tag
|
||||||
run: echo "tag=http-client-$(cat packages/http-client/package.json | jq .version)" >> "$GITHUB_OUTPUT"
|
run: echo "tag=@actions/http-client-$(cat packages/http-client/package.json | jq .version)-test-tag" >> "$GITHUB_OUTPUT"
|
||||||
publish:
|
publish:
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
needs: test
|
needs: test
|
||||||
|
|
Loading…
Reference in New Issue