-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 50baa03
Showing
50 changed files
with
5,149 additions
and
0 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,37 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
|
||
name: Pages | ||
|
||
# Controls when the workflow will run | ||
on: | ||
# Triggers the workflow on push or pull request events but only for the "main" branch | ||
push: | ||
branches: [ "main" ] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
# This workflow contains a single job called "build" | ||
build: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v4 | ||
|
||
# Runs a set of commands using the runners shell | ||
- name: Build | ||
run: | | ||
sudo apt-get install -y python3-pip | ||
pip3 install --upgrade -r requirements.txt | ||
sh -x ./build-docs | ||
mv build public | ||
- name: Deploy 🚀 | ||
uses: JamesIves/github-pages-deploy-action@v4 | ||
with: | ||
folder: public # The folder the action should deploy. |
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,6 @@ | ||
# SPDX-FileCopyrightText: 2021 GNOME Foundation | ||
# | ||
# SPDX-License-Identifier: CC0-1.0 | ||
|
||
build | ||
|
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,29 @@ | ||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
Upstream-Name: vala-tutorial | ||
Upstream-Contact: Colin Kiama <[email protected]> | ||
Source: https://github.com/colinkiama/vala-tutorial | ||
|
||
Files: README.md | ||
Copyright: 2022 Colin Kiama | ||
License: CC0-1.0 | ||
|
||
Files: *.rst | ||
Copyright: 2022 Colin Kiama | ||
License: CC-BY-SA-4.0 | ||
|
||
Files: source/_static/* | ||
Copyright: 2021 Jakub Steiner | ||
License: CC-BY-SA-3.0 | ||
|
||
Files: source/_static/fonts/* | ||
Copyright: 2009 The Cantarell Authors | ||
License: OFL-1.1 | ||
|
||
Files: source/_templates/* | ||
Copyright: 2020 Pradyun Gedam <[email protected]> | ||
Copyright: 2021 Jakub Steiner | ||
License: MIT | ||
|
||
Files: source/logo.png | ||
Copyright: 2022 The Vala Authors | ||
License: CC-BY-SA-3.0 |
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,17 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Build Docs", | ||
"type": "shell", | ||
"command": "make", | ||
"problemMatcher": [], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
} | ||
] | ||
} |
Oops, something went wrong.