Skip to content

fix: Forgot to include test branch #4

fix: Forgot to include test branch

fix: Forgot to include test branch #4

Workflow file for this run

name: EIYARO Main Workflow
defaults:
run:
shell: bash
permissions:
contents: write
on:
push:
branches: [ main, ci-cd ]
tags: [ "*" ]
paths-ignore: [ "README.md", "CHANGELOG.md", "cliff.toml" ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build Applications
with:
fail-fast: false
runs-on: ${{ matrix.operating-system }}

Check failure on line 26 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / EIYARO Main Workflow

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 26, Col: 5): Unexpected value 'runs-on' .github/workflows/main.yml (Line: 32, Col: 5): Unexpected value 'steps'
strategy:
matrix:
operating-system: [ubuntu-latest,windows-latest,macos-latest]
steps:
- name: Checkput
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Build Server
run: make eiyarod
- name: Build Client
run: make eiyarocli
release:
if: contains(github.ref_type, 'tag')
name: Create GitHub Release
with:
fail-fast: false
runs-on: ubuntu-latest
needs: [ build ]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- name: Build Release
run: make release-all
- name: Create GitHub release
uses: softprops/action-gh-release@v1
with:
name: EIYARO ${{ env.tag }}
body: ${{ steps.git-cliff.outputs.content }}
files: target/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}