GitHub-Actions: Rename some job steps

This commit is contained in:
Christian Koop 2020-11-24 19:17:58 +01:00
parent 70e656229c
commit 664ad4808a
No known key found for this signature in database
GPG Key ID: DECCA4CEE0E46D6D
1 changed files with 7 additions and 4 deletions

View File

@ -10,7 +10,8 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- run: | - name: Install dependencies and build
run: |
npm i npm i
npm run build npm run build
@ -20,16 +21,18 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
# Compile 2 spigot versions - name: Compile 2 spigot version
- uses: ./ uses: ./
with: with:
versions: latest, 1.8 versions: latest, 1.8
# Run again. The Action should detect that the requested versions are already inside the local maven repo # Run again. The Action should detect that the requested versions are already inside the local maven repo
- uses: ./ - name: Compile the same versions agains
uses: ./
with: with:
# These versions should match the ones above # These versions should match the ones above
versions: latest, 1.8 versions: latest, 1.8
- name: Upload logs - name: Upload logs
if: ${{ always() }} if: ${{ always() }}
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2