feat(db): added Toys of 11.1.7 #47
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
| # description of this workflow, can be anything you want | |
| name: Package and release | |
| on: | |
| workflow_dispatch: | |
| push: | |
| tags: | |
| - '**' | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| env: | |
| CF_API_KEY: ${{ secrets.CF_API_KEY }} | |
| WAGO_API_TOKEN: ${{ secrets.WAGO_API_TOKEN }} | |
| GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }} | |
| steps: | |
| - name: Clone project | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 # <= 0 adds fetches tags as well | |
| - name: Package and release | |
| uses: BigWigsMods/packager@master |