diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index e89fc07..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,64 +0,0 @@ -name: deploy - -on: - push: - branches: ["main"] - -env: - REGISTRY: docker.io - IMAGE: kixelated/moq-rs - SERVICE: api # Restart the API service TODO and relays - -jobs: - deploy: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - id-token: write - - # Only one release at a time and cancel prior releases - concurrency: - group: deploy - cancel-in-progress: true - - steps: - - uses: actions/checkout@v3 - - # I'm paying for Depot for faster ARM builds. - - uses: depot/setup-action@v1 - - - uses: docker/login-action@v3 - with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - - # Build and push Docker image with Depot - - uses: depot/build-push-action@v1 - with: - project: r257ctfqm6 - context: . - push: true - tags: ${{env.REGISTRY}}/${{env.IMAGE}} - platforms: linux/amd64,linux/arm64 - - # Make a special image with ffmpeg for moq-pub - - uses: depot/build-push-action@v1 - with: - project: r257ctfqm6 - context: . - push: true - target: moq-pub - tags: ${{env.REGISTRY}}/kixelated/moq-pub - platforms: linux/amd64,linux/arm64 - - # Log in to GCP - - uses: google-github-actions/auth@v1 - with: - credentials_json: ${{ secrets.GCP_SERVICE_ACCOUNT_KEY }} - - # Deploy to cloud run - - uses: google-github-actions/deploy-cloudrun@v1 - with: - service: ${{env.SERVICE}} - image: ${{env.REGISTRY}}/${{env.IMAGE}} diff --git a/moq-api/Cargo.toml b/moq-api/Cargo.toml index 83e52f1..669cf45 100644 --- a/moq-api/Cargo.toml +++ b/moq-api/Cargo.toml @@ -2,7 +2,7 @@ name = "moq-api" description = "Media over QUIC" authors = ["Luke Curley"] -repository = "https://github.com/kixelated/moq-rs" +repository = "https://github.com/englishm/moq-rs" license = "MIT OR Apache-2.0" version = "0.2.1" diff --git a/moq-catalog/Cargo.toml b/moq-catalog/Cargo.toml index a7f170c..bc34d06 100644 --- a/moq-catalog/Cargo.toml +++ b/moq-catalog/Cargo.toml @@ -2,7 +2,7 @@ name = "moq-catalog" description = "Media over QUIC" authors = ["Luke Curley"] -repository = "https://github.com/kixelated/moq-rs" +repository = "https://github.com/englishm/moq-rs" license = "MIT OR Apache-2.0" version = "0.2.0" diff --git a/moq-clock-ietf/Cargo.toml b/moq-clock-ietf/Cargo.toml index b66c7af..5721188 100644 --- a/moq-clock-ietf/Cargo.toml +++ b/moq-clock-ietf/Cargo.toml @@ -2,7 +2,7 @@ name = "moq-clock-ietf" description = "CLOCK over QUIC" authors = ["Luke Curley"] -repository = "https://github.com/kixelated/moq-rs" +repository = "https://github.com/englishm/moq-rs" license = "MIT OR Apache-2.0" version = "0.6.0" diff --git a/moq-dir/Cargo.toml b/moq-dir/Cargo.toml index 8b92d46..0df85e0 100644 --- a/moq-dir/Cargo.toml +++ b/moq-dir/Cargo.toml @@ -2,7 +2,7 @@ name = "moq-dir" description = "Media over QUIC" authors = ["Luke Curley"] -repository = "https://github.com/kixelated/moq-rs" +repository = "https://github.com/englishm/moq-rs" license = "MIT OR Apache-2.0" version = "0.3.0" diff --git a/moq-native-ietf/Cargo.toml b/moq-native-ietf/Cargo.toml index 3060c65..d1cd447 100644 --- a/moq-native-ietf/Cargo.toml +++ b/moq-native-ietf/Cargo.toml @@ -2,7 +2,7 @@ name = "moq-native-ietf" description = "Media over QUIC - Helper library for native applications" authors = ["Luke Curley"] -repository = "https://github.com/kixelated/moq-rs" +repository = "https://github.com/englishm/moq-rs" license = "MIT OR Apache-2.0" version = "0.5.0" diff --git a/moq-pub/Cargo.toml b/moq-pub/Cargo.toml index 9628249..c9fd8bd 100644 --- a/moq-pub/Cargo.toml +++ b/moq-pub/Cargo.toml @@ -2,7 +2,7 @@ name = "moq-pub" description = "Media over QUIC" authors = ["Mike English", "Luke Curley"] -repository = "https://github.com/kixelated/moq-rs" +repository = "https://github.com/englishm/moq-rs" license = "MIT OR Apache-2.0" version = "0.8.0" diff --git a/moq-relay-ietf/Cargo.toml b/moq-relay-ietf/Cargo.toml index 551f3fb..ee1a3b8 100644 --- a/moq-relay-ietf/Cargo.toml +++ b/moq-relay-ietf/Cargo.toml @@ -2,7 +2,7 @@ name = "moq-relay-ietf" description = "Media over QUIC" authors = ["Luke Curley"] -repository = "https://github.com/kixelated/moq-rs" +repository = "https://github.com/englishm/moq-rs" license = "MIT OR Apache-2.0" version = "0.7.0" diff --git a/moq-sub/Cargo.toml b/moq-sub/Cargo.toml index 8ca824f..2db32f0 100644 --- a/moq-sub/Cargo.toml +++ b/moq-sub/Cargo.toml @@ -2,7 +2,7 @@ name = "moq-sub" description = "Media over QUIC" authors = [] -repository = "https://github.com/kixelated/moq-rs" +repository = "https://github.com/englishm/moq-rs" license = "MIT OR Apache-2.0" version = "0.3.0" diff --git a/moq-transport/Cargo.toml b/moq-transport/Cargo.toml index 77bb595..1146806 100644 --- a/moq-transport/Cargo.toml +++ b/moq-transport/Cargo.toml @@ -2,7 +2,7 @@ name = "moq-transport" description = "Media over QUIC" authors = ["Luke Curley"] -repository = "https://github.com/kixelated/moq-rs" +repository = "https://github.com/englishm/moq-rs" license = "MIT OR Apache-2.0" version = "0.7.0"