⬆️ Bump tar from 6.2.0 to 6.2.1 in /src-capacitor (#46) #18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release CI | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build_on_linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: update apt | |
run: sudo apt-get update | |
- name: Install libarchive-tools | |
run: sudo apt-get install -y libarchive-tools | |
- uses: actions/checkout@master | |
- uses: actions/setup-node@master | |
with: | |
node-version: 20 | |
- run: npm install | |
- run: npm run build:electron | |
- uses: actions/upload-artifact@master | |
with: | |
name: linux-builds | |
path: dist/ | |
build_on_win: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-node@master | |
with: | |
node-version: 20 | |
- run: npm install | |
- run: npm run build:electron | |
- uses: actions/upload-artifact@master | |
with: | |
name: windows-builds | |
path: dist/ |