diff options
author | joffrey-bion <joffrey.bion@gmail.com> | 2021-02-10 18:48:56 +0100 |
---|---|---|
committer | joffrey-bion <joffrey.bion@gmail.com> | 2021-02-10 18:56:44 +0100 |
commit | 348ed4360622abf23fd400d2c6bc0ca3ae1aa8c8 (patch) | |
tree | f991e76054e3d6e8d75a4a03d8ee465115ab6458 /.github/workflows | |
parent | Add CI on non-main branches (diff) | |
download | seven-wonders-348ed4360622abf23fd400d2c6bc0ca3ae1aa8c8.tar.gz seven-wonders-348ed4360622abf23fd400d2c6bc0ca3ae1aa8c8.tar.bz2 seven-wonders-348ed4360622abf23fd400d2c6bc0ca3ae1aa8c8.zip |
Add proper name for checkout step on CI
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci-cd.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 205bb0f6..fd22e7b7 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -14,7 +14,8 @@ jobs: build-and-deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - name: Checkout repository + uses: actions/checkout@v2 - name: Set up JDK 15 uses: actions/setup-java@v1.4.3 |