Constellation, Spacedust, Slingshot, UFOs: atproto crates and services for microcosm

maybe try building on gh

surely it will work the first time

Changed files
+19
.github
workflows
+19
.github/workflows/build.yml
··· 1 + name: Build 2 + 3 + on: 4 + push: 5 + tags: 6 + - "reflector-v*.*.*" 7 + 8 + jobs: 9 + build: 10 + runs-on: ubuntu-latest 11 + 12 + steps: 13 + - uses: actions/checkout@v4 14 + - name: build reflector 15 + run: cargo build --bin reflector --release && mv target/release/reflector target/release/reflector_amd64 16 + - name: release 17 + uses: softprops/action-gh-release@v2 18 + with: 19 + files: target/release/reflector_amd64