Add pwa domain to cloacking rules #82
Workflow file for this run
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: "Main" | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: | |
| - "master" | |
| - "v[0-9]+.[0-9]+.[0-9]+" | |
| paths-ignore: | |
| - "README.md" | |
| jobs: | |
| build-test: | |
| runs-on: ubuntu-latest | |
| name: Build test | |
| if: github.event_name != 'push' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - run: docker compose build | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'push' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "18.x" | |
| - name: Publish | |
| run: npx @dappnode/dappnodesdk publish patch --dappnode_team_preset | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |