-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Backup: Added new mirror; Documentation - Updated README
- Loading branch information
1 parent
757ed5c
commit 6109051
Showing
3 changed files
with
26 additions
and
14 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 |
---|---|---|
|
@@ -108,6 +108,26 @@ jobs: | |
git remote add mirror ssh://[email protected]/p/brs-psp-research-initiative-1/code | ||
git push --tags --force --prune mirror 'refs/remotes/origin/*:refs/heads/*' | ||
repo.or.cz: | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- name: Checkout repository | ||
id: checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Sync up to Repo.or.cz | ||
id: sync | ||
run: | | ||
env | ||
mkdir -p ~/.ssh | ||
echo "${{ secrets.ROC_SSH_PRIVATE }}" > ~/.ssh/id_rsa | ||
chmod 700 ~/.ssh/id_rsa | ||
echo "${{ secrets.ROC_SSH_PUBLIC }}" > ~/.ssh/id_rsa.pub | ||
echo "${{ secrets.SSH_KNOWN_HOSTS }}" > ~/.ssh/known_hosts | ||
git remote add mirror ssh://repo.or.cz/BRS-PSP-Research-Initiative.git | ||
git push --tags --force --prune mirror 'refs/remotes/origin/*:refs/heads/*' | ||
archive: | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
|
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