m/cup
1
0
mirror of https://github.com/sergi0g/cup.git synced 2025-11-17 17:43:37 -05:00

Update workflows

This commit is contained in:
Sergio
2024-07-10 19:44:55 +03:00
parent 4ec661183f
commit ac8f97fbcd
4 changed files with 88 additions and 31 deletions

View File

@@ -3,7 +3,7 @@ on:
workflow_dispatch:
inputs:
tag:
description: "Nightly version tag (1, 2, 3...)"
description: "Nightly version tag"
required: true
jobs:
@@ -56,7 +56,7 @@ jobs:
run: cargo install cross --git https://github.com/cross-rs/cross
- name: Build binary
run: cross ${{ matrix.platform.command }} --target ${{ matrix.platform.target }} --release
run: cross ${{ matrix.platform.command }} --target ${{ matrix.platform.target }}
- name: Upload CLI
uses: actions/upload-artifact@v4
@@ -65,7 +65,7 @@ jobs:
path: target/${{ matrix.platform.target }}/release/${{ matrix.platform.bin }}
build-image:
needs: [create-tag, build-binary]
needs: create-tag
runs-on: ubuntu-latest
steps:
- name: Checkout