From 5d8daa3ec24cc0bb7595838d3f5be7e434098dc5 Mon Sep 17 00:00:00 2001 From: mdouchement Date: Sun, 19 Nov 2023 00:09:53 +0100 Subject: [PATCH] GH action for snapshot --- .github/workflows/snapshot.yml | 51 ++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .github/workflows/snapshot.yml diff --git a/.github/workflows/snapshot.yml b/.github/workflows/snapshot.yml new file mode 100644 index 0000000..52142ba --- /dev/null +++ b/.github/workflows/snapshot.yml @@ -0,0 +1,51 @@ +name: Snapshot +on: + workflow_dispatch: {} + push: + branches: + - master + +jobs: + snapshot: + name: Snapshot + runs-on: macos-12 + steps: + - name: Checkout code + uses: actions/checkout@v4 + - name: Rust setup + run: | + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y + echo "${HOME}/.cargo/bin" >> $GITHUB_PATH + + rustc --version + - name: NodeJS setup + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: 'npm' + - name: Create DMG setup + run: | + git clone --depth 1 --branch v1.2.1 https://github.com/create-dmg/create-dmg.git /tmp/create-dmg + cd /tmp/create-dmg + make install + # + # + - name: Snapshot + run: | + rustup target add aarch64-apple-darwin + rustup target add x86_64-apple-darwin + + yarn install + yarn package-and-build + # + # + - name: Publish artifacts aarch64 + uses: actions/upload-artifact@v3 + with: + path: src-tauri/target/verve_aarch64.dmg + name: verve_aarch64.dmg + - name: Publish artifacts x86_64 + uses: actions/upload-artifact@v3 + with: + path: src-tauri/target/verve_x86_64.dmg + name: verve_x86_64.dmg \ No newline at end of file