Compare commits

...

3 Commits

Author SHA1 Message Date
dec1e12add [test runner] 2024-11-23 16:41:06 +01:00
5aee8beff8 [test runner] 2024-11-23 16:35:48 +01:00
18fc839376 [test runner] 2024-11-23 16:30:07 +01:00
2 changed files with 11 additions and 6 deletions

View File

@@ -16,7 +16,9 @@ jobs:
# container: debian:bullseye
# runs-on: ubuntu-latest
# container: node:16-bullseye
runs-on: docker:dind
runs-on: ubuntu-runner
container:
image: docker:dind
# container:
# image: ${{ vars.REGISTRY_DOCKER }}/${{ vars.DOCKER_IMAGE_RUNNER }}:latest
# credentials:
@@ -28,11 +30,11 @@ jobs:
- name: Show Information
run: echo "Runner ${{ runner.os }} working on repository ${{ gitea.repository }} and on tag ${{ gitea.ref_name }}"
- name: Git clone private repository
uses: actions/checkout@v4
with:
repository: ${{ gitea.repository }}
token: ${{ secrets.REPO_PULL_GITEA }}
# - name: Git clone private repository
# uses: actions/checkout@v4
# with:
# repository: ${{ gitea.repository }}
# token: ${{ secrets.REPO_PULL_GITEA }}
- name: Login to docker private registry
uses: docker/login-action@v3
@@ -41,6 +43,9 @@ jobs:
username: ${{ secrets.REGISTRY_DOCKER_USER }}
password: ${{ secrets.REGISTRY_DOCKER_PASS }}
- run: git --help
- name: Build and push image in registry
uses: docker/build-push-action@v5
with: