Skip to content

fix deploy

fix deploy #2

on:
push:
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: false
timeout-minutes: 60
permissions:
packages: write
steps:
- uses: actions/checkout@v2
ref: v1.1.23

Check failure on line 14 in .github/workflows/PublishRelease.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/PublishRelease.yml

Invalid workflow file

The workflow is not valid. .github/workflows/PublishRelease.yml (Line: 14, Col: 9): Unexpected value 'ref'
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Cache Maven packages
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Publish
run: mvn -P github --file pom.xml deploy