Skip to content

Commit

Permalink
fix: revert push tags step (#1514)
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeSchwert authored Feb 21, 2024
1 parent fb676f2 commit 024a5fd
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,12 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.TS_IMMUTABLE_SDK_GITHUB_TOKEN }}

- name: Setup Github
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
git config user.name "platform-sa"
git config user.email "platform-sa@users.noreply.github.com"
- name: Get tags
run: git fetch --tags
Expand Down Expand Up @@ -99,12 +100,11 @@ jobs:
- name: Test
run: yarn test

# [DX-2633]: Disabled for now, check the JIRA issue for more details
# - name: Push tags
# # Boolean inputs are not actually booleans, see https://github.com/actions/runner/issues/1483
# if: github.event.inputs.dry_run == 'false'
# run: |
# echo "$(git push --tags)"
- name: Push tags
# Boolean inputs are not actually booleans, see https://github.com/actions/runner/issues/1483
if: github.event.inputs.dry_run == 'false'
run: |
echo "$(git push --tags)"
- name: Pre Release Step
if: contains(github.event.inputs.release_type, 'alpha')
Expand Down

0 comments on commit 024a5fd

Please sign in to comment.