-
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 #19 from opentorc/staging
Apr 11th: Production <- Staging
- Loading branch information
Showing
9 changed files
with
9,394 additions
and
1,191 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Mirror repo to S3 | ||
on: | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
s3Backup: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: S3 Backup | ||
uses: peter-evans/s3-backup@v1 | ||
env: | ||
ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID_GITHUB_ACTION_CODE_BACKUP }} | ||
MIRROR_TARGET: ${{ secrets.AWS_S3_TARGET_GITHUB_ACTION_CODE_BACKUP }} | ||
SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_KEY_GITHUB_ACTION_CODE_BACKUP }} | ||
with: | ||
args: --overwrite --remove |
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 |
---|---|---|
|
@@ -10,13 +10,13 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Automatic GitHub Release | ||
uses: justincy/[email protected] | ||
id: release | ||
- uses: actions/setup-node@v1 | ||
- uses: actions/setup-node@v4 | ||
if: steps.release.outputs.released == 'true' | ||
with: | ||
registry-url: 'https://npm.pkg.github.com' | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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 |
---|---|---|
|
@@ -4,4 +4,4 @@ const awsManager = require('./lib/awsManager') | |
module.exports = { | ||
envLoader, | ||
awsManager | ||
} | ||
} |
Oops, something went wrong.