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 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 13 ## running locally 14 15 ```bash
··· 10 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 13 + inspired by [pdsls.dev](https://pdsls.dev). 14 + 15 ## running locally 16 17 ```bash
+2 -2
.tangled/workflows/deploy.yaml
··· 2 3 when: 4 - event: ["push"] 5 - branch: ["ci-setup"] 6 7 dependencies: 8 nixpkgs: 9 - flyctl 10 11 steps: 12 - - name: deploy to fly.io 13 command: | 14 flyctl deploy --remote-only
··· 2 3 when: 4 - event: ["push"] 5 + branch: ["main"] 6 7 dependencies: 8 nixpkgs: 9 - flyctl 10 11 steps: 12 + - name: Deploy to fly.io 13 command: | 14 flyctl deploy --remote-only
+1
Dockerfile
··· 14 15 # Copy source code 16 COPY src ./src 17 18 # Build for release 19 RUN cargo build --release
··· 14 15 # Copy source code 16 COPY src ./src 17 + COPY static ./static 18 19 # Build for release 20 RUN cargo build --release