Skip to content

Commit

Permalink
Merge pull request #34 from ReneeVandervelde/update-scripts
Browse files Browse the repository at this point in the history
Upgrade release scripts
  • Loading branch information
ReneeVandervelde authored Jun 30, 2024
2 parents ba38663 + 1a36d04 commit 9c6fd49
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
on: [pull_request]
jobs:
tests:
uses: inkapplications/.github/.github/workflows/kmp-checks.yml@1.0.3
uses: inkapplications/.github/.github/workflows/kmp-checks.yml@1.1.0
2 changes: 1 addition & 1 deletion .github/workflows/pushes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ on:
branches: [master]
jobs:
tests:
uses: inkapplications/.github/.github/workflows/kmp-checks.yml@1.0.3
uses: inkapplications/.github/.github/workflows/kmp-checks.yml@1.1.0
20 changes: 2 additions & 18 deletions .github/workflows/tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,28 +7,12 @@ env:
jobs:
tests:
name: Test
uses: inkapplications/.github/.github/workflows/kmp-checks.yml@1.0.3
uses: inkapplications/.github/.github/workflows/kmp-checks.yml@1.1.0
publish:
name: Publish to Maven Central
needs: tests
secrets: inherit
uses: inkapplications/.github/.github/workflows/kmp-maven-publish.yml@1.0.3
uses: inkapplications/.github/.github/workflows/kmp-maven-publish.yml@1.1.0
with:
version: ${{ github.ref_name }}
publish-android: true
draft-release:
name: Draft Github Release
needs: [publish]
runs-on: ubuntu-latest
steps:
- name: Create Release
id: create_release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref_name }}
draft: true
prerelease: false
body: "See CHANGELOG.md for details"

0 comments on commit 9c6fd49

Please sign in to comment.