Skip to content

Commit

Permalink
feat(github workflow): removed master restriction when activating act…
Browse files Browse the repository at this point in the history
…ions
  • Loading branch information
zhifenglee-aelf committed Oct 26, 2024
1 parent 3367979 commit 10fe5e0
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions .github/workflows/publish-package-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,46 +15,22 @@ jobs:
with:
fetch-depth: 0 # Ensure the full history is fetched so we can check the commit history

- name: Verify tag is on master branch
id: verify_tag
run: |
# Get the commit SHA of the tag
TAG_COMMIT=$(git rev-list -n 1 $GITHUB_REF)
# Check if the commit exists on the master branch
if git merge-base --is-ancestor $TAG_COMMIT origin/master; then
echo "Tag commit is on master branch."
echo "IS_ON_MASTER=true" >> $GITHUB_ENV
else
echo "Tag commit is not on master branch."
echo "IS_ON_MASTER=false" >> $GITHUB_ENV
fi
- name: Stop if not on master
if: env.IS_ON_MASTER != 'true'
run: |
echo "This tag was not created from the master branch. Exiting."
exit 1
- name: Setup .NET
if: env.IS_ON_MASTER == 'true'
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.*' # Change this to the .NET version you're using

- name: Extract version from tag
if: env.IS_ON_MASTER == 'true'
run: |
TAG_NAME=$(echo $GITHUB_REF | sed 's/refs\/tags\///')
VERSION=${TAG_NAME#v}
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Pack
if: env.IS_ON_MASTER == 'true'
working-directory: ${{ env.WORKING_DIRECTORY }}
run: dotnet pack --configuration Release --output nupkgs /p:Version=$VERSION

- name: Publish NuGet packages
if: env.IS_ON_MASTER == 'true'
working-directory: ${{ env.WORKING_DIRECTORY }}
run: |
dotnet nuget push "nupkgs/*.nupkg" --api-key ${{ secrets.TEMPLATES_NUGET_API_KEY }} --source ${{ vars.TEMPLATES_NUGET_SOURCE_URL }}

0 comments on commit 10fe5e0

Please sign in to comment.