bonzo-timer_1.21.4/.forgejo/workflows/build.yaml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 26: cannot unmarshal !!seq into string

27 lines
540 B
YAML

on:
push:
branches: [master]
jobs:
build:
runs-on: docker
container:
image: eclipse-temurin:21-jdk
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: make gradle wrapper executable
run: chmod +x ./gradlew
- name: build
run: ./gradlew build
- name: capture build artifacts
uses: actions/upload-artifact@v3
with:
name: Artifacts
path:
- 'build/libs/*.jar'
- '!build/libs/*-sources.jar'