-
-
Notifications
You must be signed in to change notification settings - Fork 16
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 #202 from the-hideout/ci-deployment-updates
Deployment Updates - CI
- Loading branch information
Showing
3 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -9,7 +9,23 @@ permissions: | |
contents: read | ||
|
||
jobs: | ||
deployment-check: | ||
runs-on: ubuntu-latest | ||
outputs: # set outputs for use in downstream jobs | ||
continue: ${{ steps.deployment-check.outputs.continue }} | ||
|
||
steps: | ||
# https://github.com/github/branch-deploy/blob/d3c24bd92505e623615b75ffdfac5ed5259adbdb/docs/merge-commit-strategy.md | ||
- name: deployment check | ||
uses: github/[email protected] | ||
id: deployment-check | ||
with: | ||
merge_deploy_mode: "true" | ||
environment: production | ||
|
||
deploy: | ||
if: ${{ needs.deployment-check.outputs.continue == 'true' }} | ||
needs: deployment-check | ||
environment: production | ||
runs-on: ubuntu-latest | ||
|
||
|
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,22 @@ | ||
# https://github.com/github/branch-deploy/blob/d3c24bd92505e623615b75ffdfac5ed5259adbdb/docs/unlock-on-merge.md | ||
|
||
name: Unlock On Merge | ||
|
||
on: | ||
pull_request: | ||
types: [closed] | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
unlock-on-merge: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: unlock on merge | ||
uses: github/[email protected] | ||
id: unlock-on-merge | ||
with: | ||
unlock_on_merge_mode: "true" # <-- indicates that this is the "Unlock on Merge Mode" workflow | ||
environment_targets: production,development |
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,23 @@ | ||
# Maintainer Notes | ||
|
||
This is a living document for the maintainers of this repository. | ||
|
||
## Deployment Process | ||
|
||
This is a simple run down of how review / deploy a pull request. | ||
|
||
1. A pull request is opened | ||
2. We review the code | ||
3. We comment `.deploy to development` and ensure the creator of the pull request is happy with the changes | ||
4. We comment `.deploy` to deploy to production. We "let it bake" and ensure everything is working as expected for a few minutes to a few days depending on the complexity of the changes. | ||
5. We approve the pull request and merge it into `main` | ||
|
||
> It should be noted that the approval step can come before the deployment steps if that suits the situation better. | ||
## CI Failures | ||
|
||
A known issue (I am not sure of the cause) for CI failures is when dependabot opens a pull request. For some very strange reason, the necessary secrets are not injected into the Actions workflow when the pull request comes from dependabot. This causes the wrangler environment in CI to fail because it lacks the proper credentials to authenticate with Cloudflare. | ||
|
||
The fix: Simply push a commit to the branch in question. It can be an empty commit if you like. This will trigger the CI workflow again and the secrets will be injected properly. | ||
|
||
IDK why this happens, but it does. ¯\\\_(ツ)\_/¯ |