fix mkdir #4
Workflow file for this run
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: dotnet package | |
on: [push] | |
env: | |
dotnet-version: '8.0.x' | |
jobs: | |
linux-x64: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: ${{ env.dotnet-version }} | |
- name: Install project dependencies | |
run: dotnet restore | |
- name: Install dotnet AOT dependencies | |
run: | | |
sudo apt-get update \ | |
&& sudo apt-get install -y --no-install-recommends \ | |
clang zlib1g-dev | |
- run: mkdir /app && mkdir /app/linux-x64 | |
- name: Compile exectuable | |
run: sudo dotnet publish -r linux-x64 -c Release -o /app/linux-x64/ CloseAsteroids.csproj | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
name: v1.0.0 | |
files: | | |
/app/linux-x64/CloseAsteroids | |