Skip to content

Commit

Permalink
Merge pull request #133 from ReneeVandervelde/workflow-updates
Browse files Browse the repository at this point in the history
Update workflow scripts
  • Loading branch information
ReneeVandervelde authored Jun 30, 2024
2 parents cb2f03d + a4b2f8e commit 28b50e2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull_requests.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,7 +4,7 @@ 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
build:
needs: [tests]
runs-on: ubuntu-latest
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ 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
verify-docs:
runs-on: ubuntu-latest
steps:
Expand All @@ -27,9 +27,10 @@ jobs:
name: Publish to Maven Central
needs: [tests, verify-docs]
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 }}
draft-release: false
publish-linux-arm64: false
publish-android-native-arm32: false
publish-android-native-arm64: false
Expand All @@ -54,6 +55,9 @@ jobs:
-
name: Prepare Archives
run: cp cli/build/distributions/shade-*.zip cli/build/distributions/shade.zip && cp cli/build/distributions/shade-*.tar cli/build/distributions/shade.tar
-
name: Prepare Changelog Text
run: mkdir -p build && sed '1,/---/d' CHANGELOG.md | awk '/---/{exit}1' | sed '$d' > build/RELEASE.md
-
name: Create Release
id: create_release
Expand All @@ -65,7 +69,7 @@ jobs:
release_name: ${{ github.ref_name }}
draft: true
prerelease: false
body: "See CHANGELOG.md for details"
body_path: build/RELEASE.md
-
name: Upload Cli Tar
uses: actions/upload-release-asset@v1.0.2
Expand Down

0 comments on commit 28b50e2

Please sign in to comment.