aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build.yaml10
1 files changed, 6 insertions, 4 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index b83e15fc..b0c03139 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -25,15 +25,17 @@ jobs:
# Check out the current repository in the `sir-lancebot` subdirectory
- name: Checkout code
uses: actions/checkout@v2
- path: sir-lancebot
+ with:
+ path: sir-lancebot
# Check out the private "kubernetes" repository in the `kubernetes`
# subdirectory using a GitHub Personal Access Token
- name: Checkout code
uses: actions/checkout@v2
- repository: python-discord/kubernetes
- token: ${{ secrets.REPO_TOKEN }}
- path: kubernetes
+ with:
+ repository: python-discord/kubernetes
+ token: ${{ secrets.REPO_TOKEN }}
+ path: kubernetes
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1