diff --git a/.github/workflows/docker-release.yml b/.github/workflows/docker-release.yml deleted file mode 100644 index 244e480..0000000 --- a/.github/workflows/docker-release.yml +++ /dev/null @@ -1,53 +0,0 @@ -name: Docker Release - -on: - push: - tags: - - 'v*.*.*' - -env: - REGISTRY: ghcr.io - IMAGE_NAME: ${{ github.repository }} - -jobs: - build-and-push: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Log in to Container Registry - uses: docker/login-action@v3 - with: - registry: ${{ env.REGISTRY }} - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Extract metadata (tags, labels) - id: meta - uses: docker/metadata-action@v5 - with: - images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - tags: | - type=semver,pattern={{version}} - type=semver,pattern={{major}}.{{minor}} - type=semver,pattern={{major}} - type=raw,value=latest,enable={{is_default_branch}} - - - name: Build and push Docker image - uses: docker/build-push-action@v5 - with: - context: . - platforms: linux/amd64,linux/arm64 - push: true - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} - cache-from: type=gha - cache-to: type=gha,mode=max diff --git a/README.md b/README.md index a2e023e..c61a34e 100644 --- a/README.md +++ b/README.md @@ -393,6 +393,7 @@ This project is licensed under the **MIT License** - see the [LICENSE](LICENSE) Vixy depends on various open-source libraries. Their licenses can be found in their respective repositories: +- [prometric](https://github.com/chainbound/prometric) - MIT/Apache-2.0 - [tokio](https://github.com/tokio-rs/tokio) - MIT License - [axum](https://github.com/tokio-rs/axum) - MIT License - [reqwest](https://github.com/seanmonstar/reqwest) - MIT/Apache-2.0