Skip to content

Commit 4f1d34f

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents be404d8 + 3717650 commit 4f1d34f

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/docker.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,12 @@ jobs:
1717
username: ${{github.actor}}
1818
password: ${{secrets.GITHUB_TOKEN}}
1919
registry: "ghcr.io"
20+
- name: downcase repository owner
21+
run: |
22+
echo REPO=$(echo ${{github.repository_owner}} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV
2023
- name: Build Docker image
2124
uses: docker/build-push-action@v2
2225
with:
2326
file: "./Dockerfile"
24-
tags: ghcr.io/meetplan/frontend:latest
25-
push: true
27+
tags: ghcr.io/${{env.REPO}}/frontend:latest
28+
push: true

.github/workflows/tauri-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
tag_name: commit-${{ github.sha }}
2424
release_name: "Prerelease ${{ github.sha }}"
2525
body: "See the assets to download this version and install."
26-
draft: true
26+
draft: false
2727
prerelease: true
2828
build-tauri:
2929
needs: create-release

0 commit comments

Comments
 (0)