ci: publish container and artifacts on merge to main #81
Workflow file for this run
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: CI/CD | ||
on: | ||
workflow_call: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
workflow_dispatch: | ||
env: | ||
CI_IS_DEFAULT_BRANCH: ${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }} | ||
CI_IS_TAG: ${{ startsWith(github.ref, 'refs/tags/') }} | ||
jobs: | ||
check-inputs: | ||
runs-on: ubuntu-24.04 | ||
outputs: | ||
CI_CARGO_PROFILE: ${{ steps.set-profile.outputs.CI_CARGO_PROFILE }} | ||
steps: | ||
- name: Set CI_CARGO_PROFILE | ||
id: set-profile | ||
run: | | ||
if [[ ${CI_IS_DEFAULT_BRANCH} == 'true' ]]; then | ||
echo "CI_CARGO_PROFILE=artifact" >> $GITHUB_OUTPUT | ||
else | ||
echo "CI_CARGO_PROFILE=dev" >> $GITHUB_OUTPUT | ||
fi | ||
rust: | ||
needs: check-inputs | ||
uses: ./.github/workflows/rust.yaml | ||
Check failure on line 31 in .github/workflows/ci.yaml GitHub Actions / CI/CDInvalid workflow file
|
||
with: | ||
cargo-profile: ${{ needs.check-inputs.outputs.CI_CARGO_PROFILE }} | ||
container: | ||
needs: rust | ||
uses: ./.github/workflows/container.yaml |