Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Pratap2018 committed Jan 12, 2024
1 parent e8278eb commit 0a1a545
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Playground Build and deploy Pipeline
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]-rc.[0-9]+"
- "[0-9]+.[0-9]+.[0-9]+"
- "[0-9]+.[0-9]+.[0-9]-rc.[0-9]+"

jobs:
Build-Pipeline:
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/release-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Studio Server Release Workflow
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]-rc.[0-9]+"
- "[0-9]+.[0-9]+.[0-9]+"
- "[0-9]+.[0-9]+.[0-9]-rc.[0-9]+"

permissions:
contents: write
Expand Down Expand Up @@ -56,6 +56,7 @@ jobs:
uses: docker/login-action@v2
with:
registry: ghcr.io

username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -75,8 +76,9 @@ jobs:
- name: Build and push image
uses: docker/build-push-action@v3

with:
context: .
context: ./server/
platforms: linux/amd64
push: true
tags: ${{ steps.docker-build.outputs.tags }}
Expand Down

0 comments on commit 0a1a545

Please sign in to comment.