Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 643 Bytes

File metadata and controls

36 lines (26 loc) · 643 Bytes

Coditory Multi Setup GitHub Action

Single action to setup all kinds environments for building projects.

Sample usage

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: