summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorjoffrey-bion <joffrey.bion@gmail.com>2021-02-10 18:48:56 +0100
committerjoffrey-bion <joffrey.bion@gmail.com>2021-02-10 18:56:44 +0100
commit348ed4360622abf23fd400d2c6bc0ca3ae1aa8c8 (patch)
treef991e76054e3d6e8d75a4a03d8ee465115ab6458 /.github
parentAdd CI on non-main branches (diff)
downloadseven-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')
-rw-r--r--.github/workflows/ci-cd.yml3
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
bgstack15