Skip to content

Commit

Permalink
fix: Update workflows (#87)
Browse files Browse the repository at this point in the history
* fix: Update doc deploy action

* fix: Update push action
  • Loading branch information
jsakv authored Aug 19, 2024
1 parent f5bdbdc commit e94a390
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/doc-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
jobs:
publish:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v2
with:
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build docker
run: docker compose build -t $DOCKERHUB_USER/$IMAGE_NAME:latest
- name: Build image
run: docker compose build

- name: Tag image
run: docker tag pyro-risks-web $DOCKERHUB_USER/$IMAGE_NAME:latest

- name: Login to DockerHub
uses: docker/login-action@v3
with:
Expand Down

0 comments on commit e94a390

Please sign in to comment.