Skip to content

Commit 1bd856d

Browse files
authored
3.2.1
3.2.1
2 parents 244ed8b + 98e1212 commit 1bd856d

File tree

6 files changed

+60
-23
lines changed

6 files changed

+60
-23
lines changed

.github/workflows/README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,15 @@
1-
# About latex-builder workflow
1+
# About 42AI actions
2+
3+
## make-it.yml
4+
5+
> On any push, regardless of the branch, this action will attempt to build the PDFs.
6+
7+
## release-it.yml
8+
9+
> Branch : MASTER
10+
11+
For any push on MASTER branch, this action will build the PDFs and publish a new release for the project.
12+
13+
> NB: For the new release to appear, uploaded code must contain a non-existing VERSION.
14+
> Adapt the content of the file `/version` accordingly.
215

.github/workflows/make-it.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: make-it
2+
3+
on: [push]
4+
5+
jobs:
6+
make-it:
7+
permissions:
8+
contents: write
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout repository
12+
uses: actions/checkout@v4
13+
- name: Install LaTex utilities
14+
run: sudo apt update && sudo apt-get install -y texlive-full
15+
- name: Get version from file
16+
id: get_version
17+
run: echo "VERSION=version/$(cat version)" >> $GITHUB_ENV
18+
- name: Name release from version
19+
id: get_release
20+
run: echo "RELEASE=release_$(cat version)" >> $GITHUB_ENV
21+
- name: Build PDFs
22+
run: make
23+
- name: Upload PDFs archives
24+
uses: actions/upload-artifact@v4
25+
with:
26+
name: modules.pdf
27+
path: |
28+
build/module00.pdf
29+
build/module01.pdf
30+
build/module02.pdf
31+
build/module03.pdf
32+
build/module04.pdf

.github/workflows/latex-builder.yml renamed to .github/workflows/release-it.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1-
name: Latex Builder
1+
name: release-it
22

33
on: [push]
44

55
jobs:
6-
make-it:
6+
release-it:
77
permissions:
88
contents: write
99
runs-on: ubuntu-latest
10+
if: contains(github.ref, 'master')
1011
steps:
1112
- name: Checkout repository
1213
uses: actions/checkout@v4
1314
- name: Install LaTex utilities
14-
run: sudo apt-get install -y texlive-full
15+
run: sudo apt update && sudo apt-get install -y texlive-full
1516
- name: Get version from file
1617
id: get_version
1718
run: echo "VERSION=version/$(cat version)" >> $GITHUB_ENV

CHANGELOG.md

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,5 @@
11
## Fixs
22

3-
> Module00: PR #249; PR #253
4-
> Module01: PR #248
5-
> Module02: PR #254
6-
> Module03: PR #250
7-
> Module04: N/A
3+
> Actions worfklows split in two files depending on whether a push is made on the master branch or not.
4+
> Updated README
85
9-
## CI/CD
10-
11-
> - Fixed and updated broken `LaTex Builder` Github actions workflow
12-
13-
## Other modifications
14-
15-
> - Corrected spelling or grammar mistakes
16-
> - Updated logo in module/subjets/assets
17-
> - Updated logo in resources/42ai_logo
18-
> - Updated README
19-
> - Added a link on each project PDF introduction to reach our Discord server via the 42 associations portal on Discord (reserved to 42students). Edited the text to reach 42 and 42AI's Slack servers.

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,13 @@
2424
- [Beta-testers](#beta-testers)
2525
- [Thanks to Ilyes and Kévin for the PR](#thanks-to-ilyes-and-kévin-for-the-pr)
2626

27-
This project is a Python programming and Machine Learning bootcamp created by [42 AI](http://www.42ai.fr).
27+
>This project is a Python programming and Machine Learning bootcamp created by [42 AI](http://www.42ai.fr).
28+
>
29+
>No prior Python programming or Machine Learning experience is required!
2830
29-
No prior Python programming or Machine Learning experience is required! Your mission, should you choose to accept it, is to come and learn some of the essential knowledge for Machine Learning, Data Science and statistics, in a single week. You will start with the basics of the Python language and then get acquainted with some libraries that are invaluable to any programmer interested in the field of AI or data science.
31+
Your mission, should you choose to accept it, is to learn some of the essential knowledge for Machine Learning, Data Science and statistics, in a single week.
32+
33+
You will start with the basics of **Python** and then get acquainted with some libraries that are invaluable to any programmer interested in the field of AI or data science.
3034

3135
42 Artificial Intelligence is a student organization of the Paris campus of the school 42. Our purpose is to foster discussion, learning, and interest in the field of artificial intelligence, by organizing various activities such as lectures and workshops.
3236

@@ -68,6 +72,7 @@ The pdf files of each module can be downloaded from our realease page:
6872
* Tristan Duquesne ([email protected])
6973
* Pierre Peigné ([email protected])
7074
* Quentin Feuillade Montixi ([email protected])
75+
* Mathieu Perez ([email protected])
7176

7277
### Beta-testers
7378

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v3.2.0
1+
v3.2.1

0 commit comments

Comments
 (0)