Increase the project verion to v1.0.5 . #7
Workflow file for this run
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: CI Build | |
on: | |
push: | |
branches: [ master ] | |
tags: | |
- '*' | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: ghcr.io/muhkuh-sys/mbs_ubuntu_2004_x86_64:latest | |
steps: | |
- name: Checkout repository | |
# Use the old checkout v1 here. The newer v2 requires git 2.28 which is not available in the standard distribution. | |
uses: actions/checkout@v1 | |
with: | |
submodules: recursive | |
- name: Build | |
run: python3 mbs/mbs | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v1 | |
with: | |
name: artifacts | |
path: targets/jonchki/repository |