I have defined a little github action workflow, which is supposed to compile a kss-styleguide from scss.
The steps of that workflow basically trigger building the resulting css and the respective kss-styleguide.
When I run the build process locally on my dev machine the built styleguide is written to the styleguide folder located in the root of my project.
However on github, despite everything being marked off green, I don't know, what or where the resulting files are being written to.
How can I deploy the generated styleguide, if I don't know where it is?
Here's my yaml file for this workflow:
name: Node.js CI on: push: branches: [ mk-node-ci ] pull_request: branches: [ mk-node-ci ] jobs: build: name: Build Styleguide runs-on: ubuntu-latest strategy: matrix: node-version: [14.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - uses: borales/[email protected] with: cmd: install env: NODE_ENV: development - name: "build CSS files" uses: borales/[email protected] with: cmd: "build:css" - name: "build styleguide files" uses: borales/[email protected] with: cmd: "build:styleguide"