allow to use wildcards when comparing invoice item rules #83
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: publish docs | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| # deploy: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - uses: actions/checkout@v3 | |
| # - uses: actions/setup-node@v4 | |
| # with: | |
| # node-version: "*" | |
| # cache: "npm" | |
| # cache-dependency-path: "./docs/package-lock.json" | |
| # - name: install docs dependencies | |
| # run: npm ci | |
| # working-directory: ./docs | |
| # - name: build docs | |
| # run: npm run docs:build | |
| # working-directory: ./docs | |
| # - name: rsync deployments | |
| # uses: burnett01/rsync-deployments@6.0.0 | |
| # with: | |
| # switches: -avzr --delete | |
| # path: docs/.vitepress/dist/ | |
| # remote_path: ${{ secrets.DOCS_REMOTE_PATH }} | |
| # remote_host: ksef.po-godzinach.info | |
| # remote_user: ${{ secrets.DOCS_REMOTE_USER }} | |
| # remote_port: ${{ secrets.DOCS_REMOTE_PORT }} | |
| # remote_key: ${{ secrets.DOCS_DEPLOYMENT_KEY }} | |
| build-docs-v2: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Hugo | |
| uses: peaceiris/actions-hugo@v3 | |
| with: | |
| hugo-version: "0.152.2" | |
| # extended: true | |
| - name: Build | |
| run: hugo --minify | |
| working-directory: ./docs/v2 | |
| - name: rsync deployments | |
| uses: burnett01/rsync-deployments@6.0.0 | |
| with: | |
| switches: -avzr --delete | |
| path: docs/v2/public/ | |
| remote_path: ${{ secrets.DOCS_REMOTE_PATH }} | |
| remote_host: ${{ secrets.DOCS_REMOTE_HOST }} | |
| remote_user: ${{ secrets.DOCS_REMOTE_USER }} | |
| remote_port: ${{ secrets.DOCS_REMOTE_PORT }} | |
| remote_key: ${{ secrets.DOCS_DEPLOYMENT_KEY }} |