Build snap #8
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: Build snap | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: 30 10 * * 1 # run Monday's at 10:30 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
runs-on: "ubuntu-24.04" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Snapcraft | |
uses: samuelmeuli/action-snapcraft@v3 | |
- name: download genai | |
run: | | |
curl -O https://storage.openvinotoolkit.org/repositories/openvino_genai/packages/2024.5/linux/openvino_genai_ubuntu24_2024.5.0.0_x86_64.tar.gz | |
tar zxf openvino_genai_ubuntu24_2024.5.0.0_x86_64.tar.gz | |
mv openvino_genai_ubuntu24_2024.5.0.0_x86_64 openvino_genai | |
- name: ls | |
run: | | |
ls | |
- name: run snapcraft | |
run: | | |
sudo snapcraft | |