fix changelog #1114
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: build | |
on: [push] | |
env: | |
sfall_version: 4.4.0.1 | |
mpack_version: 4.4 | |
jobs: | |
build: | |
if: ${{ github.actor != 'bgforge-hive' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run tests | |
run: ./extra/tests.sh | |
- uses: devopsx/gha-ubuntu-i386-fix@master | |
- name: Install packages | |
run: | | |
sudo DEBIAN_FRONTEND=noninteractive eatmydata apt-get install -o=Dpkg::Use-Pty=0 -y crudini dos2unix gcc p7zip | |
WINEARCH=win32 eatmydata wineboot | |
- name: Build and package | |
run: ./extra/full.sh | |
- name: Upload artifacts - exe | |
uses: actions/upload-artifact@v3 | |
if: "!startsWith(github.ref, 'refs/tags/')" | |
with: | |
name: upu.exe | |
path: upu*.exe | |
- name: Upload artifacts - translations zip | |
uses: actions/upload-artifact@v3 | |
if: "!startsWith(github.ref, 'refs/tags/')" | |
with: | |
name: upu_translations.zip | |
path: upu*_translations.zip | |
# so that main glob doesn't catch it | |
- name: Remove translations zip | |
if: "!startsWith(github.ref, 'refs/tags/')" | |
run: rm -f upu*_translations.zip | |
- name: Upload artifacts - main zip | |
uses: actions/upload-artifact@v3 | |
if: "!startsWith(github.ref, 'refs/tags/')" | |
with: | |
name: upu.zip | |
path: upu*.zip | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: | | |
upu*.zip | |
upu*.exe | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |