Skip to content

Commit

Permalink
Prepare release v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayowel committed Mar 3, 2023
1 parent 475aea3 commit 8e5d8e0
Show file tree
Hide file tree
Showing 3 changed files with 212 additions and 34 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ jobs:
path: renpy
key: ${{ runner.os }}-renpy
- name: Install Ren'Py
uses: Ayowel/renpy-setup-action@v1.1.0
uses: Ayowel/renpy-setup-action@v1.2.0
if: steps.cache-renpy.outputs.cache-hit != 'true'
with:
action: install
install_dir: renpy
version: 8.0.3
# Update/Replace the step below to do something different
- name: Print help message
uses: Ayowel/renpy-setup-action@v1.1.0
uses: Ayowel/renpy-setup-action@v1.2.0
with:
action: exec
install_dir: renpy
Expand All @@ -54,7 +54,7 @@ After installing, easily build release packages for multiple platforms:
```yml
- name: Generate game distribution files
uses: Ayowel/renpy-setup-action@v1.1.0
uses: Ayowel/renpy-setup-action@v1.2.0
with:
action: distribute
install_dir: renpy
Expand All @@ -66,7 +66,7 @@ After installing, easily build release packages for multiple platforms:
Note that you may specify a file name after the package. If you do, the value of `out_dir` will be ignored for the package. Note however that the generated file will have an extension added to the path and will not match exactly the provided value:

```yml
- uses: Ayowel/renpy-setup-action@v1.1.0
- uses: Ayowel/renpy-setup-action@v1.2.0
with:
action: distribute
install_dir: renpy
Expand All @@ -82,7 +82,7 @@ After installing Ren'py, ensure that your code does not have structural issues:

```yml
- name: Run Ren'Py linter
uses: Ayowel/renpy-setup-action@v1.1.0
uses: Ayowel/renpy-setup-action@v1.2.0
with:
action: lint
install_dir: renpy
Expand All @@ -94,7 +94,7 @@ After installing Ren'py, ensure that your code does not have structural issues:
After installing Ren'Py, use the `translate` action to update the game's translation files:

```yml
- uses: Ayowel/renpy-setup-action@v1.1.0
- uses: Ayowel/renpy-setup-action@v1.2.0
id: renpy
with:
action: translate
Expand All @@ -108,7 +108,7 @@ After installing Ren'Py, use the `translate` action to update the game's transla
After installing Ren'Py, use the `nothing` action if you just want to get one of the action's outputs, such as the Python installation's path :

```yml
- uses: Ayowel/renpy-setup-action@v1.1.0
- uses: Ayowel/renpy-setup-action@v1.2.0
id: renpy
with:
action: nothing
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
with:
path: renpy
key: ${{ runner.os }}-renpy
- uses: Ayowel/renpy-setup-action@v1.1.0
- uses: Ayowel/renpy-setup-action@v1.2.0
if: steps.cache-renpy-android.outputs.cache-hit != 'true'
with:
action: install
Expand All @@ -169,7 +169,7 @@ jobs:
key.alias.password=${{ secrets.ANDROID_ALIAS_PASSWORD }}
key.store=${{ github.workspace }}/android.keystore
# The project must have a .android.json file
- uses: Ayowel/renpy-setup-action@v1.1.0
- uses: Ayowel/renpy-setup-action@v1.2.0
with:
action: android_build
install_dir: renpy
Expand All @@ -183,7 +183,7 @@ jobs:
This action supports the following inputs:

```yml
- uses: Ayowel/renpy-setup-action@v1.1.0
- uses: Ayowel/renpy-setup-action@v1.2.0
with:
# What the action should do. Must be one of:
# 'install', 'distribute', 'android_build',
Expand Down
Loading

0 comments on commit 8e5d8e0

Please sign in to comment.