add libcrypto-1_1-x64.dll #13
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: Auto build Aseprite | |
on: | |
push: | |
branches: ["main"] | |
permissions: | |
contents: write | |
jobs: | |
auto-build: | |
name: Auto build Aseprite for Windows x64 | |
runs-on: windows-2022 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Ninja | |
run: | | |
choco install ninja -y | |
- name: Install Python requirements | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Download Aseprite | |
run: | | |
python download.py | |
- name: Setup MSVC Developer Command Prompt | |
uses: TheMrMilchmann/setup-msvc-dev@v3 | |
with: | |
arch: x64 | |
- name: Build Aseprite | |
run: | | |
mkdir build | |
cd build | |
cmake "../src/aseprite" -G Ninja -DCMAKE_BUILD_TYPE=MinSizeRel -DLAF_BACKEND=skia -DSKIA_DIR="../src/skia" -DSKIA_LIBRARY_DIR="../src/skia/out/Release-x64" -DSKIA_LIBRARY="../src/skia/out/Release-x64/skia.lib" | |
ninja aseprite | |
copy ../libcrypto-1_1-x64.dll ./bin | |
- name: Get version | |
id: get_version | |
run: | | |
$version = Get-Content version.txt | |
echo "version=$version" >> $env:GITHUB_OUTPUT | |
- name: Zip Aseprite | |
run: | | |
cd build/bin | |
7z a ../../Aseprite-Windows-x64-${{ steps.get_version.outputs.version }}.zip * | |
- name: GH Release | |
uses: softprops/[email protected] | |
with: | |
name: Aseprite-Windows-x64-${{ steps.get_version.outputs.version }} | |
tag_name: ${{ steps.get_version.outputs.version }} | |
files: | | |
Aseprite-Windows-x64-${{ steps.get_version.outputs.version }}.zip |