https://github.com/coditory/multi-setup-action
Single GitHub action for setting up different types of environments
https://github.com/coditory/multi-setup-action
Last synced: 2 months ago
JSON representation
Single GitHub action for setting up different types of environments
- Host: GitHub
- URL: https://github.com/coditory/multi-setup-action
- Owner: coditory
- Created: 2024-10-22T06:31:13.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-10-20T10:24:13.000Z (6 months ago)
- Last Synced: 2025-10-20T17:54:04.500Z (6 months ago)
- Size: 20.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Coditory Multi Setup GitHub Action
Single action to setup all kinds environments for building projects.
## Sample usage
```yml
name: Build
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup
uses: coditory/multi-setup-action@v1
with:
java-version: 21
- name: Build
run: ./gradlew build
```
## References
See:
- [Other Coditory actions](https://github.com/topics/coditory-actions)
- [Coditory workflows](https://github.com/topics/coditory-workflows)