Skip to content

Commit 600f2b6

Browse files
authored
Merge branch 'cartabinaria:main' into main
2 parents 6e528d5 + 3488003 commit 600f2b6

22 files changed

+2774
-1
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Pages start from here
2+
3+
on:
4+
workflow_dispatch
5+
6+
permissions:
7+
pages: write # to deploy to Pages
8+
id-token: write # to verify the deployment originates from an appropriate source
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Create sample file
15+
run: echo "<h1>Laboratorio fra pari!</h1>" > index.html
16+
- name: Upload artifact
17+
# https://github.com/actions/upload-pages-artifact
18+
uses: actions/upload-pages-artifact@v4
19+
with:
20+
path: .
21+
22+
deploy:
23+
needs: build
24+
runs-on: ubuntu-latest
25+
environment:
26+
name: github-pages
27+
url: ${{ steps.deployment.outputs.page_url }}
28+
steps:
29+
- name: Deploy to GitHub Pages
30+
# https://github.com/actions/deploy-pages
31+
uses: actions/deploy-pages@v4

HelloWord/HelloWord.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
go\npackage main\n\nimport "fmt"\n\nfunc main() {\n fmt.Println("Hello World")\n}

HelloWord/HelloWord.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
console.log("Hello World");

HelloWord/HelloWord.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
print("hello world")
File renamed without changes.

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
# lab-git2
22
Repository per il Laboratorio fra pari di Git2 - condivisione remota
3-
Omar.
3+
4+
## HelloWolrd
5+
Creata cartella 'helloworld' e aggiunti tutti i file di nome "hello world" già esistenti nella repo;
6+
Scritto altri helloworld con estensioni non presenti.
7+
8+
## Folder info
9+
Questa cartella contiene qualche link utile!

info/adm-chat-telegram.link

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
https://t.me/admstaff_chat

info/adm-website.link

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
https://students.cs.unibo.it

info/git-documentation.link

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
https://git-scm.com/docs

info/github-documentation.link

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
https://docs.github.com/en

0 commit comments

Comments
 (0)