Skip to content

Commit

Permalink
[MV-1829][DEV] Adding the secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
esecondy-psee committed Feb 6, 2024
1 parent 2da1393 commit c687142
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/all_jobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,13 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Login to Docker Registry
uses: docker/login-action@v3
with:
username: ${{ secrets.PSEE_DOCKER_HUB_USER }}
password: ${{ secrets.PSEE_DOCKER_HUB_ACCESS_TOKEN }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand All @@ -29,16 +35,19 @@ jobs:
with:
context:
file: .github/workflows/Dockerfile.OpenEB
push: false
tags: openeb:ubuntu-20.04
push: true
tags: prophesee/openeb:openeb-ubuntu-20.04

job1:
name: Ubuntu 20
needs: container-test-job
runs-on: ubuntu-20.04
container:
image: openeb:ubuntu-20.04
image: prophesee/openeb:openeb-ubuntu-20.04
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Build openEB
run: |
mkdir build && cd build
Expand Down

0 comments on commit c687142

Please sign in to comment.