fix(deps): update dependency com.eygraber:uri-kmp to v0.0.19 (#544) #92
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release - Create tag | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
create-release: | |
name: Create release and tag | |
runs-on: ubuntu-latest | |
environment: release | |
concurrency: | |
group: create-release | |
cancel-in-progress: true | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Get current date | |
id: date | |
run: echo "::set-output name=date::$(date +'%Y.%m')" | |
- name: Compute unique version code | |
id: version | |
run: echo "::set-output name=version::$(git rev-list HEAD --count)" | |
- name: Create GitHub release | |
uses: ncipollo/release-action@v1.14.0 | |
with: | |
tag: "v${{ steps.date.outputs.date }}.${{ steps.version.outputs.version }}" | |
commit: main | |
makeLatest: true | |
generateReleaseNotes: true | |
token: ${{ secrets.RELEASE_GITHUB_TOKEN }} |