Skip to content

Commit af5c9e0

Browse files
committed
Fix CICD
1 parent 9af6dca commit af5c9e0

2 files changed

Lines changed: 0 additions & 19 deletions

File tree

.github/workflows/preview.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -166,14 +166,6 @@ jobs:
166166
fi
167167
done
168168
169-
- name: Ensure Tag Exists
170-
if: "!startsWith(github.ref, 'refs/tags/')"
171-
run: |
172-
git config --global user.name "github-actions"
173-
git config --global user.email "actions@github.com"
174-
git tag ${{ env.JAVA8_CF }}
175-
git push origin ${{ env.JAVA8_CF }}
176-
177169
- name: Create or Update GitHub Release
178170
uses: softprops/action-gh-release@v2
179171
with:

.github/workflows/release.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -162,17 +162,6 @@ jobs:
162162
fi
163163
done
164164
165-
- name: Check or create tag
166-
run: |
167-
if git rev-parse --verify --quiet "${{ env.JAVA8_CF }}"; then
168-
echo "Tag exists."
169-
else
170-
git config --local user.name "github-actions"
171-
git config --local user.email "actions@github.com"
172-
git tag ${{ env.JAVA8_CF }}
173-
git push origin ${{ env.JAVA8_CF }}
174-
fi
175-
176165
- name: Create or update GitHub Release
177166
uses: softprops/action-gh-release@v2
178167
with:

0 commit comments

Comments
 (0)