convert repo name to lower

pull/24/head
Cullen Watson 2023-08-28 08:00:10 -05:00
parent 893894c41c
commit a8e792558b
1 changed files with 2 additions and 2 deletions

View File

@ -29,13 +29,13 @@ jobs:
context: . context: .
file: ./Dockerfile file: ./Dockerfile
push: true 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 - name: Create Release
id: create_release id: create_release
uses: actions/create-release@v1 uses: actions/create-release@v1
env: 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: with:
tag_name: ${{ github.sha }} tag_name: ${{ github.sha }}
release_name: Release ${{ github.sha }} release_name: Release ${{ github.sha }}