Skip to content

Update ci.yml

Update ci.yml #21

Workflow file for this run

name: CI
on:
push:
branches:
- master
- releases/v[0-9]+.[0-9]+.[0-9]+
pull_request:
types: [opened, synchronize]
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}
cancel-in-progress: true
jobs:
test-parse:
name: Data Files
runs-on: windows-2022
env:
CONTINUOUS: EndlessSky-win64-continuous.zip
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
#- uses: actions/checkout@v4
# with:
# repository: 'endless-sky/endless-sky'
- name: Download latest continuous
run: gh release download -R endless-sky/endless-sky continuous -p ${{ env.CONTINUOUS }}

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

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 27
- name: Extract and prepare continuous
run: |
Expand-Archive ${{ env.CONTINUOUS }} -DestinationPath continuous -Force
# COPY '.\continuous\Endless Sky.exe' .
# COPY '.\continuous\*.dll' .
cd .\continuous
mkdir plugins
cd .\plugins
mkdir world-forge
cd ..\
- uses: actions/checkout@v4
with:
path: '.\continuous\plugins\world-forge'
- name: Parse Datafiles
run: "./'Endless Sky.exe' -p"
shell: bash