Skip to content

Commit

Permalink
lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
Dnouv committed May 30, 2024
1 parent c15ae03 commit 301a8d4
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/main-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
push:
branches:
- main
- fork-modifications
- develop

jobs:
build-and-push:
Expand All @@ -33,13 +33,22 @@ jobs:
- name: Expose GH Runtime
uses: crazy-max/ghaction-github-runtime@v3

- name: set lower case owner name
run: |
echo "OWNER_LC=${OWNER,,}" >>${GITHUB_ENV}
env:
OWNER: "${{ github.repository_owner }}"

- name: set lower case owner name
run: |
echo "REPO_LC=$(echo ${{ github.repository }} | awk 'BEGIN{FS=OFS="/"}{print tolower($1) "/" $2}')" >>${GITHUB_ENV}
- name: Build and Push Docker Images
run: |
make build_and_push_images
env:
REGISTRY: "ghcr.io"
ORG: ${{ github.repository_owner }}
REPO: ${{ github.event.repository.name }}
ORG: ${{ env.OWNER_LC }}
REPO: ${{ env.REPO_LC }}
GITHUB_WORKFLOW: ${{ github.workflow }}

build-tauri:
Expand Down

0 comments on commit 301a8d4

Please sign in to comment.