Skip to content

Add initial implementation of region protection hooks #1

Add initial implementation of region protection hooks

Add initial implementation of region protection hooks #1

Workflow file for this run

name: Publish Release

Check failure on line 1 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

(Line: 20, Col: 13): A mapping was not expected
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Depoyu Çek
uses: actions/checkout@v4
- name: JDK 21 Kurulumu
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache:
maven: true
- name: Maven ile Derle (Testleri Atla)
run: mvn -B package -DskipTests --file pom.xml
- name: Release Oluştur ve Yükle
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: target/BenthRegionShield-*.jar
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}