Skip to content

Commit 42e45d3

Browse files
committed
improving CICD cache handling
1 parent d9f888d commit 42e45d3

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ jobs:
5454
echo "Installing Zig ${{ env.ZIG_VERSION }}..."
5555
curl -LO "https://ziglang.org/download/${{ env.ZIG_VERSION }}/zig-x86_64-linux-${{ env.ZIG_VERSION }}.tar.xz"
5656
tar xf "zig-x86_64-linux-${{ env.ZIG_VERSION }}.tar.xz"
57+
rm -rf zig
5758
mv "zig-x86_64-linux-${{ env.ZIG_VERSION }}" zig
5859
rm -f "zig-x86_64-linux-${{ env.ZIG_VERSION }}.tar.xz"
5960
echo "Zig ${{ env.ZIG_VERSION }} installed successfully"

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ jobs:
8484
echo "Installing Zig ${{ env.ZIG_VERSION }}..."
8585
curl -LO "https://ziglang.org/download/${{ env.ZIG_VERSION }}/zig-x86_64-linux-${{ env.ZIG_VERSION }}.tar.xz"
8686
tar xf "zig-x86_64-linux-${{ env.ZIG_VERSION }}.tar.xz"
87+
rm -rf zig
8788
mv "zig-x86_64-linux-${{ env.ZIG_VERSION }}" zig
8889
rm -f "zig-x86_64-linux-${{ env.ZIG_VERSION }}.tar.xz"
8990
echo "Zig ${{ env.ZIG_VERSION }} installed successfully"

yabb.nimble

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Package
22

3-
version = "0.4.9"
3+
version = "0.4.10"
44
author = "Aryan Ameri"
55
description = "Yet Another BTRFS Backup"
66
license = "MPL 2.0"

0 commit comments

Comments
 (0)