1
0
Fork 0

Fix indentation

pull/1365/head
Ferenc Hammerl 2023-03-07 10:51:42 +00:00
parent 084bcce189
commit d32efbf702
2 changed files with 14 additions and 14 deletions

View File

@ -92,13 +92,13 @@ jobs:
- name: Create tag - name: Create tag
uses: actions/github-script@v6 uses: actions/github-script@v6
with: with:
script: | script: |
github.rest.git.createRef({ github.rest.git.createRef({
owner: context.repo.owner, owner: context.repo.owner,
repo: context.repo.repo, repo: context.repo.repo,
ref: 'refs/tags/${{ needs.test.outputs.tag }}', ref: 'refs/tags/${{ needs.test.outputs.tag }}',
sha: '${{ needs.test.outputs.sha }}' sha: '${{ needs.test.outputs.sha }}'
}) })
- name: notify slack on failure - name: notify slack on failure
if: failure() if: failure()
run: | run: |

View File

@ -30,13 +30,13 @@ jobs:
- name: Create tag - name: Create tag
uses: actions/github-script@v6 uses: actions/github-script@v6
with: with:
script: | script: |
github.rest.git.createRef({ github.rest.git.createRef({
owner: context.repo.owner, owner: context.repo.owner,
repo: context.repo.repo, repo: context.repo.repo,
ref: 'refs/tags/${{ needs.test.outputs.tag }}', ref: 'refs/tags/${{ needs.test.outputs.tag }}',
sha: '${{ needs.test.outputs.sha }}' sha: '${{ needs.test.outputs.sha }}'
}) })
# - name: notify slack on failure # - name: notify slack on failure
# if: failure() # if: failure()
# run: | # run: |