Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

git config error #22

Merged
merged 1 commit into from
Mar 13, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/workflows/maven-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -300,39 +300,51 @@ jobs:
- name: Tag the repositories
id: last-tags
run: |
cd versions
git config user.name github-actions
git config user.email [email protected]
cd versions
VERSIONS_TAG=$(git describe --tags --abbrev=0)
echo "::set-output name=versions_tag::$VERSIONS_TAG"
git tag -a ${{ needs.build.outputs.release_version }} -m "Release on $(date +'%Y-%m-%d') for commit $(git rev-parse HEAD)"
cd -
cd FWI
git config user.name github-actions
git config user.email [email protected]
FWI_TAG=$(git describe --tags --abbrev=0)
echo "::set-output name=fwi_tag::$FWI_TAG"
git tag -a ${{ needs.build.outputs.release_version }} -m "Release on $(date +'%Y-%m-%d') for commit $(git rev-parse HEAD)"
cd -
cd Fuel
git config user.name github-actions
git config user.email [email protected]
FUEL_TAG=$(git describe --tags --abbrev=0)
echo "::set-output name=fuel_tag::$FUEL_TAG"
git tag -a ${{ needs.build.outputs.release_version }} -m "Release on $(date +'%Y-%m-%d') for commit $(git rev-parse HEAD)"
cd -
cd Grid
git config user.name github-actions
git config user.email [email protected]
GRID_TAG=$(git describe --tags --abbrev=0)
echo "::set-output name=grid_tag::$GRID_TAG"
git tag -a ${{ needs.build.outputs.release_version }} -m "Release on $(date +'%Y-%m-%d') for commit $(git rev-parse HEAD)"
cd -
cd REDapp_Lib
git config user.name github-actions
git config user.email [email protected]
REDAPP_LIB_TAG=$(git describe --tags --abbrev=0)
echo "::set-output name=redapp_lib_tag::$REDAPP_LIB_TAG"
git tag -a ${{ needs.build.outputs.release_version }} -m "Release on $(date +'%Y-%m-%d') for commit $(git rev-parse HEAD)"
cd -
cd Weather
git config user.name github-actions
git config user.email [email protected]
WEATHER_TAG=$(git describe --tags --abbrev=0)
echo "::set-output name=weather_tag::$WEATHER_TAG"
git tag -a ${{ needs.build.outputs.release_version }} -m "Release on $(date +'%Y-%m-%d') for commit $(git rev-parse HEAD)"
cd -
cd REDapp
git config user.name github-actions
git config user.email [email protected]
REDAPP_TAG=$(git describe --tags --abbrev=0)
echo "::set-output name=redapp_tag::$REDAPP_TAG"
git tag -a ${{ needs.build.outputs.release_version }} -m "Release on $(date +'%Y-%m-%d') for commit $(git rev-parse HEAD)"
Expand Down