You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wanted to integrate this repository into my project CI, but for now I have no idea how could I do this (qarmin/czkawka#749).
Currently I stopped on this code
name: 🏁 Windows
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 2'
env:
CARGO_TERM_COLOR: always
jobs:
container:
runs-on: ubuntu-latest
container: mglolenstine/gtk4-cross:rust-gtk-4.6
steps:
- run: |
echo This job does specify a container.
echo It runs in the container instead of the VM.
git clone https://github.com/qarmin/czkawka.git
build
zip -r gtk_app.zip target/x86_64-pc-windows-gnu/release/czkawka_gui.exe
name: Run in container
- name: Store Windows GUI CrossComplile
uses: actions/upload-artifact@v2
with:
name: czkawka_gui-release-console-${{ matrix.toolchain }}
path: gtk_app.zip
which shows error
/usr/bin/build: line 4: /github/home/.cargo/env: No such file or directory
The text was updated successfully, but these errors were encountered:
I wanted to integrate this repository into my project CI, but for now I have no idea how could I do this (qarmin/czkawka#749).
Currently I stopped on this code
which shows error
The text was updated successfully, but these errors were encountered: