Updated workflow
This commit is contained in:
parent
ddd1aefdb7
commit
2b62fe03ee
1 changed files with 7 additions and 7 deletions
14
.github/workflows/build.yml
vendored
14
.github/workflows/build.yml
vendored
|
|
@ -9,14 +9,14 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Login to Registry
|
||||
run: |
|
||||
echo "${{ secrets.DOCKER_PASSWD }}" | docker login \
|
||||
-u "${{ secrets.DOCKER_USER }}" \
|
||||
--password-stdin \
|
||||
docker.tensamin.net
|
||||
- name: Login
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: docker.tensamin.net
|
||||
username: ${{ secrets.DOCKER_USER }}
|
||||
password: ${{ secrets.DOCKER_PASSWD }}
|
||||
|
||||
- name: Build and Push
|
||||
- name: Build & Push
|
||||
run: |
|
||||
docker build -t docker.tensamin.net/iota:latest .
|
||||
docker push docker.tensamin.net/iota:latest
|
||||
|
|
|
|||
Loading…
Reference in a new issue