31 lines
882 B
Markdown
31 lines
882 B
Markdown
# IT-Security Excercise Sheets
|
|
```
|
|
it-sec-repo/
|
|
├── .gitea/
|
|
│ └── workflows/
|
|
│ └── create-zip.yaml
|
|
├── .gitignore
|
|
├── sheet01/
|
|
│ ├── a1/
|
|
│ │ └── somefile.md
|
|
│ ├── a2/
|
|
│ │ ├── somefile.java
|
|
│ ... ...
|
|
├── sheet02/
|
|
│ ├── a1/
|
|
│ ...
|
|
```
|
|
|
|
## Submissions (Only on git.leohabrom.com)
|
|
- add the tag `sheetXX-submission` to the git commit where sheetXX is the directory containing the submission
|
|
```
|
|
git tag sheetXX-submission
|
|
git push origin sheetXX-submission
|
|
```
|
|
- push that submission commit to the main branch
|
|
- the pipeline will create the zip file with the submission and release it
|
|
|
|
#### Removing tags
|
|
- delete the tag from the remote through the UI or `git push --delete origin tagName`
|
|
- delete the tag locally `git tag -d tagName`
|
|
- delete the release in the gitea UI |