Skip to content

Commit

Permalink
feat: Add auto release (#15)
Browse files Browse the repository at this point in the history
Co-authored-by: adamglin <dev@adamglin>
  • Loading branch information
adamglin0 and adamglin authored Sep 22, 2024
1 parent 74ec9b7 commit 99f9349
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/publish_artifacts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,15 @@ jobs:
- name: Publish To Maven Central
run: |
cd ./compose-shadow \
./gradlew publishAndReleaseToMavenCentral --no-configuration-cache
./gradlew publishAndReleaseToMavenCentral --no-configuration-cache
- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false

0 comments on commit 99f9349

Please sign in to comment.