diff --git a/.github/workflows/build-pipeline.yml b/.github/workflows/build-pipeline.yml index 1519a8fc..37fd96b8 100644 --- a/.github/workflows/build-pipeline.yml +++ b/.github/workflows/build-pipeline.yml @@ -118,14 +118,15 @@ jobs: git commit -am "/version ${{ env.software_version }}" git push - name: Push Tag - uses: actions-ecosystem/action-push-tag@v1 if: | github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release') - with: - tag: ${{ env.software_version }} - message: "Version ${{ env.software_version }}" + run: | + git config user.name "${GITHUB_ACTOR}" + git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" + git tag -a "${{ env.software_version }}" -m "Version ${{ env.software_version }}" + git push origin "${{ env.software_version }}" - name: Publish UMM-S with new version uses: podaac/cmr-umm-updater@0.2.1 if: | diff --git a/CHANGELOG.md b/CHANGELOG.md index 76522755..ccca6400 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added ### Changed - Updated dependency versions +- [issue-31](https://github.com/podaac/l2ss-py/issues/88): Build pipeline manually pushes tag rather than use action-push-tag ### Deprecated ### Removed ### Fixed