Update main.yml #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 desktop version | |
on: push | |
jobs: | |
build-desktop: | |
name: Build desktop version | |
runs-on: ubuntu-latest | |
container: | |
image: nimlang/nim:2.0.0-regular | |
volumes: | |
- ${{ github.workspace }}:/app | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v2 | |
- name: test | |
run: ls | |
- name: Add .nimble to PATH | |
run: PATH=~/.nimble/bin:$PATH | |
- name: add safe directory | |
run: git config --global --add safe.directory /__w/Absytree/Absytree | |
- name: Test123 | |
run: nim | |
- name: nimble setup | |
run: nimble setup | |
- name: nimble buildDesktop | |
run: nimble buildDesktop |