๐Ÿ“… Calendar file generator for triathlonlive.tv upcoming events triathlon-live-calendar.fly.dev

Migrates to Tangled

+21 -32
-1
.github/FUNDING.yml
··· 1 - github: [cuducos]
-16
.github/workflows/deploy.yml
··· 1 - name: Deploy 2 - on: 3 - push: 4 - branches: 5 - - main 6 - jobs: 7 - deploy: 8 - name: Deploy app 9 - runs-on: ubuntu-latest 10 - concurrency: deploy-group 11 - steps: 12 - - uses: actions/checkout@v4 13 - - uses: superfly/flyctl-actions/setup-flyctl@master 14 - - run: flyctl deploy --remote-only 15 - env: 16 - FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
-15
.github/workflows/tests.yml
··· 1 - name: Tests 2 - on: [push, pull_request] 3 - jobs: 4 - build: 5 - runs-on: ubuntu-latest 6 - steps: 7 - - uses: actions/checkout@v4 8 - - name: Set up Python 9 - uses: actions/setup-python@v4 10 - with: 11 - python-version: "3.12" 12 - - name: Install `uv` 13 - run: curl -LsSf https://astral.sh/uv/install.sh | sh 14 - - name: Run tests 15 - run: uv run pytest
+10
.tangled/workflows/deploy.yaml
··· 1 + when: 2 + - event: ["push"] 3 + branch: ["main"] 4 + engine: "nixery" 5 + dependencies: 6 + nixpkgs: 7 + - flyctl 8 + steps: 9 + - name: Deploy 10 + command: flyctl deploy --remote-only
+11
.tangled/workflows/tests.yaml
··· 1 + when: 2 + - event: ["push", "pull_request"] 3 + branch: ["main"] 4 + engine: "nixery" 5 + dependencies: 6 + nixpkgs: 7 + - python314 8 + - uv 9 + steps: 10 + - name: Tests 11 + command: uv run pytest