Skip to content

Commit

Permalink
Merge pull request #194 from EasyAbp/auto-tag
Browse files Browse the repository at this point in the history
Added auto-tag.yml
  • Loading branch information
gdlcf88 authored Oct 5, 2024
2 parents 9bc5a19 + 1fab419 commit f315c65
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/auto-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: publish to nuget
on:
push:
branches:
- master
- main
jobs:
publish:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2

- name: read common.props
id: commonProps
uses: juliangruber/read-file-action@v1
with:
path: ./dotnet/common.props

- name: get version
id: getVersion
uses: AsasInnab/regex-action@v1
with:
regex_pattern: '(?<=>)[^<>]+(?=</Version>)'
regex_flags: 'gim'
search_string: '${{ steps.commonProps.outputs.content }}'

- name: determine if the tag exists
uses: mukunku/[email protected]
id: checkTag
with:
tag: ${{ steps.getVersion.outputs.first_match }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: add git tag
if: ${{ steps.checkTag.outputs.exists == 'false' }}
uses: tvdias/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ steps.getVersion.outputs.first_match }}

0 comments on commit f315c65

Please sign in to comment.