deploy on merge to main #1

merged
opened by zzstoatzz.io targeting main from ci-setup
Changed files
+5 -2
.tangled
workflows
+2
README.md
··· 10 10 11 11 @me shows this visually: your identity at the center, surrounded by the third-party apps that have created data for you. click an app to see what record types it stores, then click a record type to view the actual data. 12 12 13 + inspired by [pdsls.dev](https://pdsls.dev). 14 + 13 15 ## running locally 14 16 15 17 ```bash
+2 -2
.tangled/workflows/deploy.yaml
··· 2 2 3 3 when: 4 4 - event: ["push"] 5 - branch: ["ci-setup"] 5 + branch: ["main"] 6 6 7 7 dependencies: 8 8 nixpkgs: 9 9 - flyctl 10 10 11 11 steps: 12 - - name: deploy to fly.io 12 + - name: Deploy to fly.io 13 13 command: | 14 14 flyctl deploy --remote-only
+1
Dockerfile
··· 14 14 15 15 # Copy source code 16 16 COPY src ./src 17 + COPY static ./static 17 18 18 19 # Build for release 19 20 RUN cargo build --release