diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 2f7c6f2..873c860 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -18,15 +18,15 @@ jobs: lfs: true - name: set-up qemu - uses: https://git.mousesoft.ru/ms/gitea-action-setup-qemu@v3 + uses: https://git.mousesoft.ru/actions/gitea-action-setup-qemu@v3 - name: set-up docker buildx - uses: https://git.mousesoft.ru/ms/gitea-action-docker-setup-buildx@v3 + uses: https://git.mousesoft.ru/actions/gitea-action-docker-setup-buildx@v3 with: buildkitd-flags: --debug - name: login to docker hub - uses: https://git.mousesoft.ru/ms/gitea-action-docker-login@v3 + uses: https://git.mousesoft.ru/actions/gitea-action-docker-login@v3 with: registry: git.mousesoft.ru username: ${{ secrets.API_USER }} @@ -40,7 +40,7 @@ jobs: echo IMAGE_REVISION=$(git rev-parse HEAD) | tee -a $GITHUB_OUTPUT - name: build and push base 24.04 - uses: https://git.mousesoft.ru/ms/gitea-action-docker-build-push@v6 + uses: https://git.mousesoft.ru/actions/gitea-action-docker-build-push@v6 with: context: . file: dockerfiles/base.dockerfile @@ -56,11 +56,11 @@ jobs: IMAGE_CREATED=${{ steps.meta.outputs.IMAGE_CREATED }} IMAGE_REVISION=${{ steps.meta.outputs.IMAGE_REVISION }} tags: | - git.mousesoft.ru/ms/gitea-runner-images:ubuntu-24.04 - git.mousesoft.ru/ms/gitea-runner-images:ubuntu-latest + git.mousesoft.ru/actions/gitea-runner-images:ubuntu-24.04 + git.mousesoft.ru/actions/gitea-runner-images:ubuntu-latest - name: build and push python 24.04 - uses: https://git.mousesoft.ru/ms/gitea-action-docker-build-push@v6 + uses: https://git.mousesoft.ru/actions/gitea-action-docker-build-push@v6 with: context: . file: dockerfiles/python.dockerfile @@ -76,11 +76,11 @@ jobs: IMAGE_CREATED=${{ steps.meta.outputs.IMAGE_CREATED }} IMAGE_REVISION=${{ steps.meta.outputs.IMAGE_REVISION }} tags: | - git.mousesoft.ru/ms/gitea-runner-images:python-ubuntu-24.04 - git.mousesoft.ru/ms/gitea-runner-images:python-ubuntu-latest + git.mousesoft.ru/actions/gitea-runner-images:python-ubuntu-24.04 + git.mousesoft.ru/actions/gitea-runner-images:python-ubuntu-latest - name: build and push doc 24.04 - uses: https://git.mousesoft.ru/ms/gitea-action-docker-build-push@v6 + uses: https://git.mousesoft.ru/actions/gitea-action-docker-build-push@v6 with: context: . file: dockerfiles/doc.dockerfile @@ -96,27 +96,27 @@ jobs: IMAGE_CREATED=${{ steps.meta.outputs.IMAGE_CREATED }} IMAGE_REVISION=${{ steps.meta.outputs.IMAGE_REVISION }} tags: | - git.mousesoft.ru/ms/gitea-runner-images:doc-ubuntu-24.04 - git.mousesoft.ru/ms/gitea-runner-images:doc-ubuntu-latest + git.mousesoft.ru/actions/gitea-runner-images:doc-ubuntu-24.04 + git.mousesoft.ru/actions/gitea-runner-images:doc-ubuntu-latest ubuntu-22_04: runs-on: ubuntu-latest steps: - name: check-out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: lfs: true - name: set-up qemu - uses: https://git.mousesoft.ru/ms/gitea-action-setup-qemu@v3 + uses: https://git.mousesoft.ru/actions/gitea-action-setup-qemu@v3 - name: set-up docker buildx - uses: https://git.mousesoft.ru/ms/gitea-action-docker-setup-buildx@v3 + uses: https://git.mousesoft.ru/actions/gitea-action-docker-setup-buildx@v3 with: buildkitd-flags: --debug - name: login to docker hub - uses: https://git.mousesoft.ru/ms/gitea-action-docker-login@v3 + uses: https://git.mousesoft.ru/actions/gitea-action-docker-login@v3 with: registry: git.mousesoft.ru username: ${{ secrets.API_USER }} @@ -130,7 +130,7 @@ jobs: echo IMAGE_REVISION=$(git rev-parse HEAD) | tee -a $GITHUB_OUTPUT - name: build and push base 22.04 - uses: https://git.mousesoft.ru/ms/gitea-action-docker-build-push@v6 + uses: https://git.mousesoft.ru/actions/gitea-action-docker-build-push@v6 with: context: . file: dockerfiles/base.dockerfile @@ -146,10 +146,10 @@ jobs: IMAGE_CREATED=${{ steps.meta.outputs.IMAGE_CREATED }} IMAGE_REVISION=${{ steps.meta.outputs.IMAGE_REVISION }} tags: | - git.mousesoft.ru/ms/gitea-runner-images:ubuntu-22.04 + git.mousesoft.ru/actions/gitea-runner-images:ubuntu-22.04 - name: build and push python 22.04 - uses: https://git.mousesoft.ru/ms/gitea-action-docker-build-push@v6 + uses: https://git.mousesoft.ru/actions/gitea-action-docker-build-push@v6 with: context: . file: dockerfiles/python.dockerfile @@ -165,10 +165,10 @@ jobs: IMAGE_CREATED=${{ steps.meta.outputs.IMAGE_CREATED }} IMAGE_REVISION=${{ steps.meta.outputs.IMAGE_REVISION }} tags: | - git.mousesoft.ru/ms/gitea-runner-images:python-ubuntu-22.04 + git.mousesoft.ru/actions/gitea-runner-images:python-ubuntu-22.04 - name: build and push doc 22.04 - uses: https://git.mousesoft.ru/ms/gitea-action-docker-build-push@v6 + uses: https://git.mousesoft.ru/actions/gitea-action-docker-build-push@v6 with: context: . file: dockerfiles/doc.dockerfile @@ -184,4 +184,4 @@ jobs: IMAGE_CREATED=${{ steps.meta.outputs.IMAGE_CREATED }} IMAGE_REVISION=${{ steps.meta.outputs.IMAGE_REVISION }} tags: | - git.mousesoft.ru/ms/gitea-runner-images:doc-ubuntu-22.04 + git.mousesoft.ru/actions/gitea-runner-images:doc-ubuntu-22.04 diff --git a/dockerfiles/base.dockerfile b/dockerfiles/base.dockerfile index f0511b6..4498c41 100644 --- a/dockerfiles/base.dockerfile +++ b/dockerfiles/base.dockerfile @@ -8,9 +8,9 @@ ARG IMAGE_REVISION LABEL org.opencontainers.image.created="${IMAGE_CREATED}" \ org.opencontainers.image.authors="MouseSoft" \ - org.opencontainers.image.url="https://git.mousesoft.ru/ms/gitea-runner-images" \ - org.opencontainers.image.documentation="https://git.mousesoft.ru/ms/gitea-runner-images/src/branch/main/README.md" \ - org.opencontainers.image.source="https://git.mousesoft.ru/ms/gitea-runner-images" \ + org.opencontainers.image.url="https://git.mousesoft.ru/actions/gitea-runner-images" \ + org.opencontainers.image.documentation="https://git.mousesoft.ru/actions/gitea-runner-images/src/branch/main/README.md" \ + org.opencontainers.image.source="https://git.mousesoft.ru/actions/gitea-runner-images" \ org.opencontainers.image.version="${IMAGE_VERSION}" \ org.opencontainers.image.revision="${IMAGE_REVISION}" \ org.opencontainers.image.vendor="MouseSoft" \ diff --git a/dockerfiles/doc.dockerfile b/dockerfiles/doc.dockerfile index 6cea11f..a20cb30 100644 --- a/dockerfiles/doc.dockerfile +++ b/dockerfiles/doc.dockerfile @@ -9,9 +9,9 @@ ARG IMAGE_REVISION LABEL org.opencontainers.image.created="${IMAGE_CREATED}" \ org.opencontainers.image.authors="MouseSoft" \ - org.opencontainers.image.url="https://git.mousesoft.ru/ms/gitea-runner-images" \ - org.opencontainers.image.documentation="https://git.mousesoft.ru/ms/gitea-runner-images/src/branch/main/README.md" \ - org.opencontainers.image.source="https://git.mousesoft.ru/ms/gitea-runner-images" \ + org.opencontainers.image.url="https://git.mousesoft.ru/actions/gitea-runner-images" \ + org.opencontainers.image.documentation="https://git.mousesoft.ru/actions/gitea-runner-images/src/branch/main/README.md" \ + org.opencontainers.image.source="https://git.mousesoft.ru/actions/gitea-runner-images" \ org.opencontainers.image.version="${IMAGE_VERSION}" \ org.opencontainers.image.revision="${IMAGE_REVISION}" \ org.opencontainers.image.vendor="MouseSoft" \ diff --git a/dockerfiles/python.dockerfile b/dockerfiles/python.dockerfile index 1bf063b..406836a 100644 --- a/dockerfiles/python.dockerfile +++ b/dockerfiles/python.dockerfile @@ -8,9 +8,9 @@ ARG IMAGE_REVISION LABEL org.opencontainers.image.created="${IMAGE_CREATED}" \ org.opencontainers.image.authors="MouseSoft" \ - org.opencontainers.image.url="https://git.mousesoft.ru/ms/gitea-runner-images" \ - org.opencontainers.image.documentation="https://git.mousesoft.ru/ms/gitea-runner-images/src/branch/main/README.md" \ - org.opencontainers.image.source="https://git.mousesoft.ru/ms/gitea-runner-images" \ + org.opencontainers.image.url="https://git.mousesoft.ru/actions/gitea-runner-images" \ + org.opencontainers.image.documentation="https://git.mousesoft.ru/actions/gitea-runner-images/src/branch/main/README.md" \ + org.opencontainers.image.source="https://git.mousesoft.ru/actions/gitea-runner-images" \ org.opencontainers.image.version="${IMAGE_VERSION}" \ org.opencontainers.image.revision="${IMAGE_REVISION}" \ org.opencontainers.image.vendor="MouseSoft" \