Fix some workflow problems

This commit is contained in:
Tobias Reisinger 2024-05-10 13:50:07 +02:00
parent c1324b2943
commit 5e7d5466e8
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
4 changed files with 2 additions and 35 deletions

View file

@ -1,33 +0,0 @@
on:
push:
tags:
- v**
jobs:
build-artifacts:
runs-on: docker
strategy:
matrix:
arch:
#- x86_64-unknown-linux-musl # for docker
- arm-unknown-linux-gnueabihf # for raspberry pi
steps:
- uses: https://code.forgejo.org/actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- id: install-dependencies
run: |
curl https://sh.rustup.rs -sSf | sh -s -- -y
shell: bash
- id: cargo-build-release
run: |
source "$HOME/.cargo/env"
cross build --target ${{ matrix.arch }} --release
shell: bash
- uses: https://code.forgejo.org/actions/upload-artifact@v3
with:
name: emgauwa-core_${{ matrix.arch }}
path: ${{ github.workspace }}/target/${{ matrix.arch }}/release/emgauwa-core
- uses: https://code.forgejo.org/actions/upload-artifact@v3
with:
name: emgauwa-controller_${{ matrix.arch }}
path: ${{ github.workspace }}/target/${{ matrix.arch }}/release/emgauwa-controller

BIN
Cargo.lock generated

Binary file not shown.

View file

@ -1,6 +1,6 @@
[package] [package]
name = "emgauwa-controller" name = "emgauwa-controller"
version = "0.5.0" version = "0.5.1"
edition = "2021" edition = "2021"
authors = ["Tobias Reisinger <tobias@msrg.cc>"] authors = ["Tobias Reisinger <tobias@msrg.cc>"]

View file

@ -12,7 +12,7 @@ clean:
rm -f emgauwa-controller.sqlite rm -f emgauwa-controller.sqlite
emgauwa-controller_%: emgauwa-controller_%:
$(TOOL) build --target $* --release --bin emgauwa-controller $(TOOL) build --target $* --release
mkdir -p out/releases mkdir -p out/releases
cp target/$*/release/emgauwa-controller out/releases/emgauwa-controller_$* cp target/$*/release/emgauwa-controller out/releases/emgauwa-controller_$*