Skip to content
This repository has been archived by the owner on Jul 30, 2022. It is now read-only.

Commit

Permalink
rename packaged mod to mod name
Browse files Browse the repository at this point in the history
  • Loading branch information
Chronophylos committed Mar 22, 2021
1 parent 1c2535b commit 1f4a337
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Expand Up @@ -57,16 +57,16 @@ jobs:
uses: actions/checkout@v2

- name: Package as tar
run: tar -czvf ${{ github.event.repository.name }}.tar.gz $RELEASE_FILES
run: tar -czvf ${{ env.MOD_NAME }}.tar.gz $RELEASE_FILES
- name: Package as zip
run: zip -r ${{ github.event.repository.name }}.zip $RELEASE_FILES
run: zip -r ${{ env.MOD_NAME }}.zip $RELEASE_FILES

- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
${{ github.event.repository.name }}.tar.gz
${{ github.event.repository.name }}.zip
${{ env.MOD_NAME }}.tar.gz
${{ env.MOD_NAME }}.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
4 changes: 3 additions & 1 deletion README.md
@@ -1,4 +1,6 @@
## Update `vendor`
## Developing

### Update `dist`

Download the embedded Win32 Version of Python 3.7.9 from [here](https://www.python.org/ftp/python/3.7.9/python-3.7.9-embed-win32.zip) and copy the following files into `dist`:

Expand Down

0 comments on commit 1f4a337

Please sign in to comment.