Files
rendercv/.github/workflows/create-executables.yaml
dependabot[bot] 808ab9e746 build(deps): bump actions/upload-artifact from 5 to 6 (#623)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-16 18:38:58 +03:00

38 lines
883 B
YAML

name: Create executables
# GitHub events that trigger the workflow:
on:
workflow_call: # to make the workflow triggerable from other workflows
workflow_dispatch: # to make the workflow triggerable manually
jobs:
create_executables:
name: For ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, ubuntu-22.04-arm, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
permissions:
contents: write
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install just
uses: taiki-e/install-action@just
- name: Create executable
run: just create-executable
- name: Upload executable as an artifact
uses: actions/upload-artifact@v6
with:
name: rendercv-${{ matrix.os }}
path: bin/*