docker: Fix osh-dir-std download link [fix] #63
This file contains hidden or 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
| # SPDX-FileCopyrightText: 2022-2023 Robin Vobruba <hoijui.quaero@gmail.com> | |
| # | |
| # SPDX-License-Identifier: Unlicense | |
| name: Compile Linux and Windows, and publish pages | |
| on: | |
| push: | |
| branches: [ master ] | |
| release: | |
| types: [published] | |
| jobs: | |
| push_to_registry: | |
| name: Compile, check, produce documentation nad publish to pages | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the repo | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Setup Nim and Nimble | |
| uses: jiro4989/setup-nim-action@v1 | |
| #with: | |
| # nim-version: '1.6.8' # default is 'stable' | |
| - name: Install our requirements | |
| run: | | |
| scripts/install_requirements | |
| - name: Building | |
| run: | | |
| scripts/ci-run | |
| - name: Deploy to pages | |
| uses: peaceiris/actions-gh-pages@v3 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: public | |