Added option for node admin to create whitelist/blacklist of which co… #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create Release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
create-docker-image: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Login to Docker registry | |
uses: docker/login-action@v3 | |
with: | |
registry: harbor2.vantage6.ai | |
username: ${{ secrets.DOCKER_USER }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Run Makefile Rule | |
run: docker build -t harbor2.vantage6.ai/algorithms/crosstab:v4 . | |
- name: Push Docker image | |
run: | | |
docker push harbor2.vantage6.ai/algorithms/crosstab:v4 |