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:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Login to Registry
|
- name: Login
|
||||||
run: |
|
uses: docker/login-action@v3
|
||||||
echo "${{ secrets.DOCKER_PASSWD }}" | docker login \
|
with:
|
||||||
-u "${{ secrets.DOCKER_USER }}" \
|
registry: docker.tensamin.net
|
||||||
--password-stdin \
|
username: ${{ secrets.DOCKER_USER }}
|
||||||
docker.tensamin.net
|
password: ${{ secrets.DOCKER_PASSWD }}
|
||||||
|
|
||||||
- name: Build and Push
|
- name: Build & Push
|
||||||
run: |
|
run: |
|
||||||
docker build -t docker.tensamin.net/iota:latest .
|
docker build -t docker.tensamin.net/iota:latest .
|
||||||
docker push docker.tensamin.net/iota:latest
|
docker push docker.tensamin.net/iota:latest
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue