Fertilizer Input #37
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
# This workflow will build a .NET project | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | ||
name: .NET | ||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
pages: write | ||
id-token: write | ||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: true | ||
env: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.change-page-url.outputs.new_page_url }} | ||
defaults: | ||
run: | ||
working-directory: ./modelCsharp | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 6.0.x | ||
- name: Install Python 3 | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: 3.11.6 | ||
#installing packages | ||
- name: Install Python pandas | ||
run: python -m pip install --upgrade pip pandas | ||
- name: Install Python aspose | ||
run: python -m pip install --upgrade pip aspose.words | ||
- name: Install Python matplotlib | ||
run: python -m pip install --upgrade pip matplotlib | ||
- name: Install Python pyinstaller | ||
run: python -m pip install --upgrade pip datetime | ||
- name: Install Python datetime | ||
run: pip install pyinstaller | ||
- name: Create a temporary artifact downloads folder for graphs | ||
run: mkdir graphs | ||
- name: Restore dependencies | ||
run: dotnet restore | ||
- name: Build | ||
run: dotnet build --no-restore | ||
- name: run | ||
run: dotnet run --project ConsoleAppSVS-test/ConsoleAppSVS-test.csproj | ||
- name: ls | ||
run: ls | ||
- name: find CSV file | ||
run: find . -type f -name "*.csv" | ||
- name: run python | ||
run: python TestModel/testGraph/testGraph/testGraph.py | ||
- name: find index file | ||
run: find . -type f -name "*.html" | ||
- name: moving artfacts to temp folder | ||
run: | | ||
mv index.html graphs | ||
mv index.001.png graphs | ||
- name: Step 3 - Use the Upload Artifact GitHub Action | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: folder for graphs | ||
path: ./modelCsharp/graphs | ||
- name: Deploy 🚀 | ||
uses: actions/upload-pages-artifact@v2 | ||
with: | ||
path: ./modelCsharp/graphs | ||
permissions: | ||
contents: write | ||
pages: write | ||
id-token: write | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v2 | ||
- name: Override page_url | ||
id: change-page-url | ||
run: echo "new_page_url=${{ steps.deployment.outputs.page_url }}index.html" >> $GITHUB_OUTPUT | ||
- name: find index file | ||
run: find . -type f -name "*.html" | ||
- name: find CSV file | ||
run: find . -type f -name "*.csv" |