From a8e792558b7b676e70403656100cb051dbc1c8c3 Mon Sep 17 00:00:00 2001 From: Cullen Watson Date: Mon, 28 Aug 2023 08:00:10 -0500 Subject: [PATCH] convert repo name to lower --- .github/workflows/docker-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 2615332..080fc10 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -29,13 +29,13 @@ jobs: context: . file: ./Dockerfile push: true - tags: ghcr.io/${{ github.repository }}/jobspy_api:latest + tags: ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name | lower }}/jobspy_api:latest - name: Create Release id: create_release uses: actions/create-release@v1 env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tag_name: ${{ github.sha }} release_name: Release ${{ github.sha }}