CI Deploy #98
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Deploy | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Setup Xmake | |
uses: xmake-io/github-action-setup-xmake@v1 | |
with: | |
xmake-version: latest | |
actions-cache-folder: '.xmake-cache' | |
actions-cache-key: ubuntu-deploy | |
- name: Install Mingw | |
run: | | |
sudo apt-get install mingw-w64 | |
- name: Build Linux | |
run: | | |
xmake f -m release -p linux -a x86_64 | |
xmake | |
- name: Deploy Linux to Itch.io | |
uses: manleydev/butler-publish-itchio-action@master | |
env: | |
BUTLER_CREDENTIALS: ${{ secrets.BUTLER_CREDENTIALS }} | |
CHANNEL: linux | |
ITCH_GAME: skill-fantasy | |
ITCH_USER: rafael-dev-21 | |
PACKAGE: build/linux/x86_64/release | |
VERSION_FILE: version.txt | |
- name: Build Windows | |
run: | | |
xmake f -m release -p mingw -a i386 -y | |
xmake | |
- name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
path: | | |
build | |
- name: Deploy Windows to Itch.io | |
uses: manleydev/butler-publish-itchio-action@master | |
env: | |
BUTLER_CREDENTIALS: ${{ secrets.BUTLER_CREDENTIALS }} | |
CHANNEL: windows | |
ITCH_GAME: skill-fantasy | |
ITCH_USER: rafael-dev-21 | |
PACKAGE: build/mingw/i386/release | |
VERSION_FILE: version.txt |