Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hfhbd/kotlin-actions
https://github.com/hfhbd/kotlin-actions
Last synced: about 4 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/hfhbd/kotlin-actions
- Owner: hfhbd
- License: apache-2.0
- Created: 2024-03-24T20:03:37.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-04-11T11:19:17.000Z (7 months ago)
- Last Synced: 2024-04-12T16:54:58.340Z (7 months ago)
- Language: Kotlin
- Size: 138 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# kotlin-actions
Write GitHub actions in Kotlin.
## Install
This package is uploaded to `mavenCentral`.
````kotlin
// settings.gradle.kts
pluginManagement {
repositories {
mavenCentral()
}
}// build.gradle.kts
plugins {
id("app.softwork.kotlin.actions") version "LATEST"
}
````## Development
```sh
rm kotlin-js-store/package-lock.json && ./gradlew clean kotlinUpgradePackageLock build
rm integration-test/kotlin-js-store/package-lock.json && ./gradlew clean kotlinUpgradePackageLock copyActionpostDist copyActionmainDist build -pintegration-test
```