Skip to content

Commit 1ff76ae

Browse files
committed
chore: Initial commit
0 parents  commit 1ff76ae

8 files changed

Lines changed: 731 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Release Pack
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
7+
jobs:
8+
retrievingVersion:
9+
runs-on: ubuntu-latest
10+
outputs:
11+
version: ${{ steps.versionstep.outputs.version }}
12+
steps:
13+
- uses: actions/checkout@v3
14+
- id: set_var
15+
run: |
16+
content=`cat ./main/jbg.config.jet`
17+
# the following lines are only required for multi line json
18+
content="${content//'%'/'%25'}"
19+
content="${content//$'\n'/'%0A'}"
20+
content="${content//$'\r'/'%0D'}"
21+
# end of optional handling for multi line json
22+
echo "::set-output name=packageJson::$content"
23+
- run: |
24+
VERSION=${{fromJson(steps.set_var.outputs.packageJson).buildVersion}}
25+
echo "VERSION=${VERSION}" >> $GITHUB_ENV
26+
name: Retrieve Release Version
27+
- run: mkdir -p outputs
28+
- run: echo "${VERSION}"
29+
- name: Zipping windows release
30+
working-directory: main
31+
run: |
32+
zip -r ../outputs/JPP11.zip *
33+
- name: Upload release onto Github
34+
uses: ncipollo/release-action@v1
35+
with:
36+
artifacts: 'outputs/JPP11.zip'
37+
token: ${{ secrets.GITHUB_TOKEN }}
38+
tag: ${{ env.VERSION }}
39+
prerelease: false
40+
allowUpdates: true

LICENSE

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# The Jackbox Party Pack 11 en français
2+
3+
Ce repository contient les traductions de la communauté française pour le jeu "The Jackbox Party Pack 11" de Jackbox Games
4+
5+
## Détails
6+
7+
| Jeu | Textes du jeu | Fichiers internes (images, polices, etc) | Sous-titres | Site internet (https://jbfr.fr/) | Doublage | Crédits |
8+
| ------------- | ------------- | ------------- | ------------- | ------------- | ------------- | ------------- |
9+
| Drawful animate |||||| |
10+
| The Wheel Of Enormous Proportions |||||| |
11+
| Job Job |||||| |
12+
| The Poll Mine |||||| |
13+
| Weapon's Drawn |||||| |
14+
15+
✅ Terminé</br>
16+
⚪ Commencé mais non terminé</br>
17+
❌ Non commencé

main/games/CookiesGame/.gitkeep

Whitespace-only changes.

main/games/DirtyDetectives/.gitkeep

Whitespace-only changes.

main/games/MicGame/.gitkeep

Whitespace-only changes.

main/games/TriviaRPG/.gitkeep

Whitespace-only changes.

main/games/YouRuinedIt/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)