disabled locales until i figure it out #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: Build and Upload | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 # Updated to v3 | |
- name: Set up C++ environment | |
run: sudo apt-get install -y g++ libncurses5-dev libncursesw5-dev | |
- name: Build the project | |
run: | | |
make | |
- name: Upload binary artifact | |
uses: actions/upload-artifact@v3 # Updated to v3 | |
with: | |
name: soviet-installer | |
path: build/soviet-installer |