diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e26ab42..c275f6c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,8 +15,11 @@ jobs: image: ubuntu:22.04 steps: - - name: Install Git - run: apt update && apt install -y git + - name: Update APT + run: apt update + + - name: Install Git and dependencies for Tauri + run: apt install -y git libwebkit2gtk-4.0-dev build-essential curl wget file libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev - name: Checkout Repository uses: actions/checkout@v4 @@ -26,12 +29,6 @@ jobs: git config --global --add safe.directory /__w/stort/stort echo "TAG_NAME=commit-$(date +%Y%m%d)-$(git rev-parse --short HEAD)" >> $GITHUB_ENV - - name: Update Packages - run: apt update && apt upgrade -y - - - name: Install Dependencies for Tauri - run: apt install -y libwebkit2gtk-4.0-dev build-essential curl wget file libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev - - name: Install Mise run: | install -dm 755 /etc/apt/keyrings diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml deleted file mode 100644 index 41b2d81..0000000 --- a/.github/workflows/testing.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Testing - -on: - push: - branches: - - "*" - -permissions: - contents: write - -jobs: - build: - runs-on: ubuntu-latest - container: - image: ubuntu:22.04 - - steps: - - name: Install Rust - run: | - apt update && apt install -y curl - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y - . "$HOME/.cargo/env" - cargo --version