Skip to content

Commit

Permalink
Update workflow scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
ReneeVandervelde committed Jun 30, 2024
1 parent fd7f562 commit 8fb6ba6
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-pull_request.yml@1.0.3
uses: inkapplications/.github/.github/workflows/kmp-pull_request.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/release.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 8fb6ba6

Please sign in to comment.