Skip to content

Commit 5c4021b

Browse files
committed
Loading...
0 parents  commit 5c4021b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+14488
-0
lines changed

.github/workflows/mirror_gitlab.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Gitlab Mirror
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
sync_to_gitlab:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v4
14+
15+
- name: Set up GitLab
16+
run: |
17+
git config --global user.name "${{ secrets.GITLAB_USER }}"
18+
git config --global user.email "${{ secrets.GITLAB_EMAIL }}"
19+
env:
20+
GITLAB_USER: ${{ secrets.GITLAB_USER }}
21+
GITLAB_EMAIL: ${{ secrets.GITLAB_EMAIL }}
22+
23+
- name: Remove shallow update
24+
run: git fetch --prune --unshallow
25+
26+
- name: Push to GitLab
27+
run: |
28+
git remote add gitlab https://oauth2:${{ secrets.GITLAB_TOKEN }}@gitlab.com/rmottanet/rmottanet.gitlab.io.git
29+
git push --set-upstream gitlab --all
30+
git push --set-upstream gitlab --tags
31+
env:
32+
GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }}

.gitlab-ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
image: node:alpine
2+
3+
stages:
4+
- deploy
5+
6+
pages:
7+
stage: deploy
8+
script:
9+
- mkdir .public
10+
- cp -r * .public
11+
- mv .public public
12+
artifacts:
13+
paths:
14+
- public
15+
only:
16+
- main

LICENSE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-nd/4.0/80x15.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/4.0/">Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License</a>.

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# [rmotta.net:~\#](https://rmottanet.github.io/#)
2+
3+
Regnum: Animalia, Phylum: Chordata, Classis: Mammalia, Ordo: Primates, Subordo: Haplorhini, Infraordo: Simiiformes, Familia: Hominidae, Subfamilia: Homininae, Tribus: Hominini, Genus: Homo, Species: Homo sapiens.
4+
5+
Mens humana, quae res mirabilis! In hoc mundo multa variantur, sed nulla tam complexa quam ingenium humanum. Ex omni creatura, solus homo cogitat, sapit, discit. A nobis omissa, interretis labyrintho pervagamur, sapientiae viam quaerimus, scientiae secreta scrutamur.
6+
7+
Mundi opes, fama, divitiae? Haec omnia posthabemus. Nobis solum scientia delectat, sapientia obsidet. Haec est quaestio, haec est via, haec est fortuna. In hoc domicilio virtuali nostrum sapientiae thesaurum custodimus. Nobis adsunt libros, codices, verba magna, atque omnia quae mentem roborant.
8+
9+
Ab rebus superficialibus, mente elevamur ad alta. Scientia nobis solis est res vera, quae nostras mentes format, expandit, et in aeternum continuabitur.

assets/css/fontawesome-all.min.css

Lines changed: 101 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)