Skip to content

Commit

Permalink
Simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts committed Sep 17, 2024
1 parent 708a9a3 commit 88777c8
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ jobs:
fetch-depth: 0

- name: Rebuild and push the dist/ directory
env:
GH_TOKEN: ${{ github.token }}
run: |
npm run dist
git diff ./dist
Expand Down Expand Up @@ -63,6 +61,7 @@ jobs:
echo "No tag found, exiting"
exit 1
else
echo "Creating release ${{ steps.changelog.outputs.tag }}"
gh release create ${{ steps.changelog.outputs.tag }} --title ${{ steps.changelog.outputs.tag }} --generate-notes
fi
Expand All @@ -83,8 +82,4 @@ jobs:
- name: Cleanup
env:
GH_TOKEN: ${{ github.token }}
run: |
git checkout main
git pull
git worktree prune
git push --delete origin ${{ env.TEMP_BRANCH }}
run: git push --delete origin ${{ env.TEMP_BRANCH }}

0 comments on commit 88777c8

Please sign in to comment.