Skip to content

Do checkout first

Do checkout first #3

Workflow file for this run

name: 'Build etherpad-proxy'
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: 'Build app with cargo'
run: RUSTFLAGS="-Ctarget-feature=+crt-static" cargo build --release
- uses: actions/upload-artifact@v4
with:
name: 'etherpad-proxy'
path: './target/release/etherpad-proxy'