-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from philspokas/dev-update-workflows
Dev update workflows
- Loading branch information
Showing
2 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
.github/workflows/azure-static-web-apps-proud-rock-009a2f51e.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Azure Static Web Apps CI/CD | ||
name: JokeUI396 CI/CD | ||
|
||
on: | ||
push: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Deployment | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
||
deploy-dev: | ||
runs-on: ubuntu-latest | ||
environment: dev | ||
steps: | ||
- run: echo "deploy to prod" | ||
name: deploy | ||
# ...deployment-specific steps | ||
|
||
deploy-test: | ||
runs-on: ubuntu-latest | ||
environment: test | ||
depends-on: dev | ||
steps: | ||
- run: echo "deploy to prod" | ||
name: deploy | ||
# ...deployment-specific steps | ||
|
||
deploy-prod: | ||
runs-on: ubuntu-latest | ||
environment: prod | ||
depends-on: test | ||
steps: | ||
- run: echo "deploy to prod" | ||
name: deploy | ||
# ...deployment-specific steps | ||
|