feat(admin): initial work on adding the ability to list all the items… #32
This file contains 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: Build and Package | |
on: | |
push: | |
branches-ignore: | |
- main | |
- alpha | |
- beta | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-server: | |
name: Build Server | |
uses: ./.github/workflows/build-server.yml | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
rid: linux-x64 | |
- os: windows-latest | |
rid: win-x64 | |
with: | |
branch: ${{ github.ref_name }} | |
operatingSystem: ${{ matrix.os }} | |
buildRuntime: ${{ matrix.rid }} | |
tag: "v0.0.0" | |
version: "0.0.0" | |
publish: false | |
secrets: | |
token: ${{ secrets.GITHUB_TOKEN }} |