Skip to content

Commit

Permalink
Fix action runner
Browse files Browse the repository at this point in the history
  • Loading branch information
ggodlewski committed Nov 5, 2023
1 parent 19e73ba commit c2cefda
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/DevelopServerDeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ jobs:
node-version: 18
cache: npm

- name: Build action runner
run: docker build -t "wgd-action-runner:develop" --build-arg "GIT_SHA=${GITHUB_SHA}" apps/wgd-action-runner

- name: Build hugo docs
run: |
docker run \
Expand All @@ -60,9 +63,6 @@ jobs:
push_image_and_stages: false
build_extra_args: "{'--build-arg': 'GIT_SHA=${{ github.sha }}'}"

- name: Build action runner
run: docker build -t "wgd-action-runner:develop" --build-arg "GIT_SHA=${GITHUB_SHA}" apps/wgd-action-runner

- name: Stop and remove
run: docker stop wikigdrive-develop ; docker rm wikigdrive-develop
continue-on-error: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ProdServerDeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ jobs:
node-version: 18
cache: npm

- name: Build action runner
run: docker build -t "wgd-action-runner:prod" --build-arg "GIT_SHA=${GITHUB_SHA}" apps/wgd-action-runner

- name: Build hugo docs
run: |
docker run \
Expand All @@ -61,9 +64,6 @@ jobs:
push_image_and_stages: false
build_extra_args: "{'--build-arg': 'GIT_SHA=${{ github.sha }}'}"

- name: Build action runner
run: docker build -t "wgd-action-runner:prod" --build-arg "GIT_SHA=${GITHUB_SHA}" apps/wgd-action-runner

- name: Stop and remove
run: docker stop wikigdrive-prod ; docker rm wikigdrive-prod
continue-on-error: true
Expand Down

0 comments on commit c2cefda

Please sign in to comment.