From b8d386d0054d96f5934c3d29716b9acdd17fa743 Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Fri, 30 Jun 2023 15:10:35 +0200 Subject: [PATCH] revert to github --- .gitea/workflows/dl.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/dl.yml b/.gitea/workflows/dl.yml index 57721d6..d972554 100644 --- a/.gitea/workflows/dl.yml +++ b/.gitea/workflows/dl.yml @@ -9,7 +9,7 @@ jobs: - run: apt-get update - run: apt-get install -y git nodejs - uses: actions/checkout@v3 - - uses: github.com/Gr1N/setup-poetry@v8 + - uses: Gr1N/setup-poetry@v8 - run: poetry install - run: poetry run flake8 . - run: poetry run mypy . @@ -21,16 +21,16 @@ jobs: steps: - run: apk add git nodejs - uses: actions/checkout@v3 - - uses: github.com/docker/metadata-action@v4 + - uses: docker/metadata-action@v4 id: meta with: images: xefir/dl flavor: latest=${{ gitea.ref == 'refs/heads/master' }} - - uses: github.com/docker/login-action@v2 + - uses: docker/login-action@v2 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - - uses: 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 }}