Skip to content

Commit

Permalink
ci on develop for our fork
Browse files Browse the repository at this point in the history
Co-authored-by: Dnouv <sdevanshu90@yahoo.com>
  • Loading branch information
geekgonecrazy and Dnouv committed Jun 14, 2024
1 parent 5beceb3 commit 7cb296e
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/docs-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ on:
- docs/**
branches:
- main
- develop
pull_request:
paths:
- docs/**
branches:
- main
- develop

jobs:
validate-docs:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/push_quickstart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- main
- develop
paths:
- "quickstart.sh"

Expand Down
20 changes: 17 additions & 3 deletions .github/workflows/tag-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,27 @@ 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: Convert repository name to lowercase
run: echo "REPO_NAME_LC=$(echo ${{ github.event.repository.name }} | awk '{print tolower($0)}')" >> $GITHUB_ENV

- name: Build and Push Docker Images
run: |
TAG=${GITHUB_REF#refs/heads/} make build_and_push_images
if [[ $GITHUB_REF == refs/tags/* ]]; then
TAG=${GITHUB_REF#refs/tags/}
else
TAG=${GITHUB_REF#refs/heads/}
fi
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_NAME_LC }}
GITHUB_WORKFLOW: ${{ github.workflow }}

build-tauri:
Expand Down

0 comments on commit 7cb296e

Please sign in to comment.