Skip to content

Commit 8b04270

Browse files
committed
Add checkout in the action
1 parent 0c1f162 commit 8b04270

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/productionDeploy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@ jobs:
1313

1414
# Steps represent a sequence of tasks that will be executed as part of the job
1515
steps:
16+
- uses: actions/checkout@v2
1617
- name: Install dependencies for kubectl
1718
run: |
1819
curl -LO https://storage.googleapis.com/kubernetes-release/release/`curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt`/bin/linux/amd64/kubectl
1920
chmod +x ./kubectl
2021
sudo mv ./kubectl /usr/local/bin/kubectl
2122
22-
- name: Deploy in staging
23+
- name: Deploy in production
2324
env:
2425
GOOGLE_APPLICATION_CREDENTIALS: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }}
2526
run: |

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This is a basic workflow to help you get started with Actions
22

3-
name: buildandDeploy
3+
name: test
44

55
# Controls when the action will run. Triggers the workflow on push or pull request
66
# events but only for the master branch

0 commit comments

Comments
 (0)