We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33e2b67 commit 3f7c819Copy full SHA for 3f7c819
1 file changed
.github/workflows/build.yml
@@ -8,14 +8,14 @@ on:
8
jobs:
9
docker:
10
timeout-minutes: 10
11
- runs-on: ubuntu-22.04
+ runs-on: ubuntu-latest
12
13
steps:
14
- name: Checkout
15
uses: actions/checkout@v1
16
17
- name: Start containers
18
- run: docker-compose -f "docker-compose.yml" up -d --build
+ run: docker compose -f "docker-compose.yml" up -d --build
19
20
- name: Crawl
21
run: |
@@ -25,7 +25,7 @@ jobs:
25
26
- name: Stop containers
27
if: always()
28
- run: docker-compose -f "docker-compose.yml" down
+ run: docker compose -f "docker-compose.yml" down
29
30
- name: Deploy
31
uses: JamesIves/github-pages-deploy-action@releases/v4
0 commit comments