Skip to content

fix: unrecognized named-value #2

fix: unrecognized named-value

fix: unrecognized named-value #2

Workflow file for this run

# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path
name: Base CI
on: [push, pull_request, workflow_dispatch]
jobs:
build:
name: Just Build
runs-on: ${{ matrix.os }}
# strategy:
# fail-fast: false
# matrix:
# os:
# - ubuntu-latest
# - windows-latest
# - ubuntu-20.04
# jdk:
# - '11'
# - '17'
#
# jdk-distribution:
# - 'adopt'
# - 'temurin'
steps:
- uses: actions/checkout@v2
# - name: Set up JDK ${{ matrix.jdk }}
# uses: actions/setup-java@v4
# with:
# java-version: ${{ matrix.jdk }}
# distribution: ${{ matrix.jdk-distribution }}
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'adopt'
- name: Just verify
run: mvn -B clean verify
- name: Package with Maven
run: mvn -B clean package -DskipTests
- name: View tree
run: |
ls -a
- name: Upload Artifact
if: matrix.os == ubuntu-latest

Check failure on line 52 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Base CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 52, Col: 11): Unrecognized named-value: 'ubuntu-latest'. Located at position 14 within expression: matrix.os == ubuntu-latest
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.os }}
release:
name: release
if: startsWith(github.ref, 'refs/tags/')
needs: build
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
- name: Release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: '*.jar'
tag: ${{ github.ref }}
file_glob: true