Skip to content

Setup CD pipeline for rawrassembly #2

Setup CD pipeline for rawrassembly

Setup CD pipeline for rawrassembly #2

name: CD RawrrAssembly
on:
# TODO important remove before actually merging
pull_request:
branches: [ devel ]
workflow_dispatch:
env:
DOTNET_DOCKER: mcr.microsoft.com/dotnet/sdk:8.0
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Pull image
run: docker pull $DOTNET_DOCKER
- name: Build
run: cd inst/rawrrassembly && docker run --rm -v $PWD:/app -w /app $DOTNET_DOCKER dotnet publish --os osx,linux,win -c Release -o out
- name: Publish results
uses: actions/upload-artifact@v4
with:
name: rawrr
path: inst/rawrrassembly/out