This repository has been archived by the owner on Oct 17, 2024. It is now read-only.
fix(deps): update rust crate service_conventions to 0.0.23 #215
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Main Branch Deploy | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
pull-requests: write | |
contents: write | |
jobs: | |
docker_push: | |
name: "Push docker image" | |
uses: "philipcristiano/workflows/.github/workflows/docker-build-push.yml@main" | |
needs: [flake, rust] | |
with: | |
repository: ${{ github.repository }} | |
timeout: 25 | |
secrets: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
rust: | |
uses: "philipcristiano/workflows/.github/workflows/rust.yml@main" | |
release-please: | |
needs: [flake, rust] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: google-github-actions/release-please-action@v4 | |
with: | |
token: ${{ secrets.REPO_TOKEN }} | |
release-type: rust | |
flake: | |
uses: "philipcristiano/workflows/.github/workflows/nix.yml@main" | |
with: | |
script: | | |
cargo build |