Skip to content

ci: publish container and artifacts on merge to main #81

ci: publish container and artifacts on merge to main

ci: publish container and artifacts on merge to main #81

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / CI/CD

Invalid workflow file

The workflow is not valid. In .github/workflows/ci.yaml (Line: 31, Col: 11): Error from called workflow NexusSocial/identity/.github/workflows/rust.yaml@c47d97e595a4b3226844575d2d7dce79521655f2 (Line: 71, Col: 26): Unrecognized named-value: 'env'. Located at position 1 within expression: env.MACOS In .github/workflows/ci.yaml (Line: 31, Col: 11): Error from called workflow NexusSocial/identity/.github/workflows/rust.yaml@c47d97e595a4b3226844575d2d7dce79521655f2 (Line: 74, Col: 26): Unrecognized named-value: 'env'. Located at position 1 within expression: env.LINUX
with:
cargo-profile: ${{ needs.check-inputs.outputs.CI_CARGO_PROFILE }}
container:
needs: rust
uses: ./.github/workflows/container.yaml