Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tsirysndr/setup-crosup
Set up your GitHub Actions workflow with a specific version of Crosup
https://github.com/tsirysndr/setup-crosup
crosup environment-manager github github-actions nix nix-flake package-manager setup-crosup
Last synced: about 2 months ago
JSON representation
Set up your GitHub Actions workflow with a specific version of Crosup
- Host: GitHub
- URL: https://github.com/tsirysndr/setup-crosup
- Owner: tsirysndr
- License: mit
- Created: 2023-06-21T13:21:18.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-02-19T06:46:22.000Z (11 months ago)
- Last Synced: 2024-11-14T00:07:03.740Z (2 months ago)
- Topics: crosup, environment-manager, github, github-actions, nix, nix-flake, package-manager, setup-crosup
- Language: TypeScript
- Homepage:
- Size: 16.6 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# setup-crosup
Download, install, and setup [Crosup](https://github.com/tsirysndr/crosup) in GitHub Actions.
## 🚀 Usage
```yaml
name: Setup Crosup
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:jobs:
setup-superviseur:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v4
- name: Setup Crosup
uses: tsirysndr/setup-crosup@v1
with:
version: 'v0.4.10'
# Add packages to install here
packages: |
deno
zig
- name: Verify Crosup
run: crosup --version
- name: Verify Deno
run: deno --version
- name: Verify Zig
run: zig version
```See [action.yml](action.yml) for the full documentation for this action's inputs and outputs.
## 📝 License
[MIT](LICENSE)