Skip to content

Commit

Permalink
3.2.1
Browse files Browse the repository at this point in the history
3.2.1
  • Loading branch information
maperez42 authored Oct 1, 2024
2 parents 244ed8b + 98e1212 commit 1bd856d
Show file tree
Hide file tree
Showing 6 changed files with 60 additions and 23 deletions.
15 changes: 14 additions & 1 deletion .github/workflows/README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,15 @@
# About latex-builder workflow
# About 42AI actions

## make-it.yml

> On any push, regardless of the branch, this action will attempt to build the PDFs.
## release-it.yml

> Branch : MASTER
For any push on MASTER branch, this action will build the PDFs and publish a new release for the project.

> NB: For the new release to appear, uploaded code must contain a non-existing VERSION.
> Adapt the content of the file `/version` accordingly.
32 changes: 32 additions & 0 deletions .github/workflows/make-it.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: make-it

on: [push]

jobs:
make-it:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install LaTex utilities
run: sudo apt update && sudo apt-get install -y texlive-full
- name: Get version from file
id: get_version
run: echo "VERSION=version/$(cat version)" >> $GITHUB_ENV
- name: Name release from version
id: get_release
run: echo "RELEASE=release_$(cat version)" >> $GITHUB_ENV
- name: Build PDFs
run: make
- name: Upload PDFs archives
uses: actions/upload-artifact@v4
with:
name: modules.pdf
path: |
build/module00.pdf
build/module01.pdf
build/module02.pdf
build/module03.pdf
build/module04.pdf
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
name: Latex Builder
name: release-it

on: [push]

jobs:
make-it:
release-it:
permissions:
contents: write
runs-on: ubuntu-latest
if: contains(github.ref, 'master')
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install LaTex utilities
run: sudo apt-get install -y texlive-full
run: sudo apt update && sudo apt-get install -y texlive-full
- name: Get version from file
id: get_version
run: echo "VERSION=version/$(cat version)" >> $GITHUB_ENV
Expand Down
18 changes: 2 additions & 16 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,5 @@
## Fixs

> Module00: PR #249; PR #253
> Module01: PR #248
> Module02: PR #254
> Module03: PR #250
> Module04: N/A
> Actions worfklows split in two files depending on whether a push is made on the master branch or not.
> Updated README
## CI/CD

> - Fixed and updated broken `LaTex Builder` Github actions workflow
## Other modifications

> - Corrected spelling or grammar mistakes
> - Updated logo in module/subjets/assets
> - Updated logo in resources/42ai_logo
> - Updated README
> - 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.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,13 @@
- [Beta-testers](#beta-testers)
- [Thanks to Ilyes and Kévin for the PR](#thanks-to-ilyes-and-kévin-for-the-pr)

This project is a Python programming and Machine Learning bootcamp created by [42 AI](http://www.42ai.fr).
>This project is a Python programming and Machine Learning bootcamp created by [42 AI](http://www.42ai.fr).
>
>No prior Python programming or Machine Learning experience is required!
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.
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.

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.

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.

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

### Beta-testers

Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v3.2.0
v3.2.1

0 comments on commit 1bd856d

Please sign in to comment.