Skip to content

Commit

Permalink
deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
yuvanprakash committed Jun 7, 2024
1 parent 3866cc5 commit 01c0f79
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Protected envs and stages

on:
push:
branches:
- master


jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout github repository
uses: actions/checkout@v4

- name: Build or simulate building
run: sleep 5

- name: Finish building
run: echo "Build completed successfully"

deployment:
strategy:
matrix:
target: [dev, acc, pro]
runs-on: ${{ matrix.target }}

0 comments on commit 01c0f79

Please sign in to comment.