Skip to content

Commit

Permalink
21st Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Shyam-Chen committed Jul 29, 2024
1 parent 1edcebe commit 84b381f
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 10 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/client.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Client

on:
repository_dispatch:
types: [trigger-client-workflow]

jobs:
cd:
runs-on: ubuntu-latest
environment: ${{ github.ref_name }}
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.client_payload.sha }}
10 changes: 0 additions & 10 deletions .github/workflows/deployment.yaml

This file was deleted.

14 changes: 14 additions & 0 deletions .github/workflows/server.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Server

on:
repository_dispatch:
types: [trigger-server-workflow]

jobs:
cd:
runs-on: ubuntu-latest
environment: ${{ github.ref_name }}
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.client_payload.sha }}

0 comments on commit 84b381f

Please sign in to comment.