Compare commits

...

2 Commits

Author SHA1 Message Date
dependabot[bot] 36ff9fda9b build(deps): bump tvdias/github-tagger from 0.0.1 to 0.0.2
Bumps [tvdias/github-tagger](https://github.com/tvdias/github-tagger) from 0.0.1 to 0.0.2.
- [Release notes](https://github.com/tvdias/github-tagger/releases)
- [Commits](https://github.com/tvdias/github-tagger/compare/v0.0.1...v0.0.2)

---
updated-dependencies:
- dependency-name: tvdias/github-tagger
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-11-13 14:04:39 +00:00
Zane Schepke d1fbe2aae3 chore: changelog to releases 2024-11-13 00:14:10 -05:00
+28
View File
@@ -94,6 +94,31 @@ jobs:
fileDir: ${{ env.KEY_STORE_LOCATION }}
encodedString: ${{ secrets.KEYSTORE }}
# update latest tag
- name: Set latest tag
uses: rickstaa/action-create-tag@v1
id: tag_creation
with:
tag: "latest" # or any tag name you wish to use
message: "Automated tag for HEAD commit"
force_push_tag: true
tag_exists_error: false
- name: Create latest tag
uses: tvdias/github-tagger@v0.0.2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
tag: "latest"
- name: Generate Changelog
id: changelog
uses: requarks/changelog-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
fromTag: ${{ github.event_name == 'schedule' && 'nightly' || steps.latest_release.outputs.tag_name }}
toTag: "latest"
writeToFile: false # we won't write to file, just output
# create keystore path for gradle to read
- name: Create keystore path env var
run: |
@@ -209,6 +234,9 @@ jobs:
SHA256 fingerprint:
```${{ steps.checksum.outputs.checksum }}```
### Changelog
${{ steps.changelog.outputs.changes }}
tag_name: ${{ env.TAG_NAME }}
name: ${{ env.TAG_NAME }}
draft: false