fix in main #1
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
| name: Download and Install Artifact | |
| on: [] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Install libs | |
| run: | | |
| npm install | |
| install: | |
| runs-on: ubuntu-latest | |
| needs: build # waits until build job is done | |
| steps: | |
| - name: Download build artifact | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: linux-build | |
| path: ./artifact | |
| - name: Install .deb package | |
| run: | | |
| sudo dpkg -i ./artifact/Webpage_Accessor*.deb || sudo apt-get install -f -y |