From d2338ad0d9e66eb93b315f94fe646c30cc86c767 Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Fri, 30 Jun 2023 13:20:57 +0000 Subject: [PATCH] Fix CI --- .gitea/workflows/pynyaata.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/pynyaata.yml b/.gitea/workflows/pynyaata.yml index 063a86f..ddca4e5 100644 --- a/.gitea/workflows/pynyaata.yml +++ b/.gitea/workflows/pynyaata.yml @@ -19,16 +19,16 @@ jobs: steps: - run: apk add git nodejs - uses: actions/checkout@v3 - - uses: https://github.com/docker/metadata-action@v4 + - uses: docker/metadata-action@v4 id: meta with: images: xefir/pynyaata flavor: latest=${{ gitea.ref == 'refs/heads/master' }} - - uses: https://github.com/docker/login-action@v2 + - uses: docker/login-action@v2 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - - uses: https://github.com/docker/build-push-action@v4 + - uses: docker/build-push-action@v4 with: push: ${{ gitea.ref == 'refs/heads/master' || startsWith(gitea.ref, 'refs/tags') }} tags: ${{ steps.meta.outputs.tags }} @@ -45,6 +45,6 @@ jobs: - uses: actions/checkout@v3 - run: pip install build - run: python -m build - - uses: https://github.com/pypa/gh-action-pypi-publish@release/v1 + - uses: pypa/gh-action-pypi-publish@release/v1 with: password: ${{ secrets.PYPI_API_TOKEN }}