Skip to content

Commit

Permalink
missing step name in staging workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterNashaat committed May 22, 2024
1 parent 9451d11 commit 09ef80d
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Log into Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.TFDOCKERHUB_USERNAME }}
password: ${{ secrets.TFDOCKERHUB_PASSWORD }}

- name: Set config
run: mv frontend/public/config.prod.js frontend/public/config.js

- name: Build the 3botlogin Docker image
run: docker build . --file Dockerfile --tag threefolddev/3botlogin:staging-${{ github.sha }}

- name: Push the 3botlogin Docker image
run: docker push threefolddev/3botlogin:staging-${{ github.sha }}

- name: Build wizard Docker image
run: docker build wizard/ --file wizard/Dockerfile --tag threefolddev/wizard:staging-${{ github.sha }}

- name: Push wizard Docker image
run: docker push threefolddev/wizard:staging-${{ github.sha }}

Expand Down

0 comments on commit 09ef80d

Please sign in to comment.