mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Clean up actions file
This commit is contained in:
parent
310ff37604
commit
ad069089ed
1 changed files with 7 additions and 6 deletions
13
.github/workflows/run-tests.yaml
vendored
13
.github/workflows/run-tests.yaml
vendored
|
|
@ -98,20 +98,21 @@ jobs:
|
|||
name: Build docker images
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: 'Login to GitHub container registry'
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{github.actor}}
|
||||
password: ${{secrets.GITHUB_TOKEN}}
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Build the API docker image
|
||||
run: 'docker build --file packages/api/Dockerfile .'
|
||||
# run: 'docker build --file packages/api/Dockerfile .'
|
||||
run: |
|
||||
docker build . --file packages/api/Dockerfile --tag ghcr.io/omnivore-app/backend:latest
|
||||
docker push ghcr.io/omnivore-app/backend:latest
|
||||
docker build . --file packages/api/Dockerfile --tag ghcr.io/omnivore-app/backend:latest
|
||||
docker push ghcr.io/omnivore-app/backend:latest
|
||||
- name: Build the content-fetch docker image
|
||||
run: 'docker build --file packages/content-fetch/Dockerfile .'
|
||||
- name: Build the inbound-email-handler docker image
|
||||
|
|
|
|||
Loading…
Reference in a new issue