don't ask for the width of roads on roads that may not be accessed on… #2085
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Generate quest list | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
generate-quest-list: | |
name: Generate quest list | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Generate quest list | |
run: ./gradlew generateQuestList | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: quest-list.csv | |
path: ./quest-list.csv |