Merge remote-tracking branch 'origin/main' into dev/1.5.x
This commit is contained in:
commit
60a619062a
50
.github/workflows/binaries-build.yaml
vendored
Normal file
50
.github/workflows/binaries-build.yaml
vendored
Normal file
@ -0,0 +1,50 @@
|
||||
name: Build Executables and Update Release
|
||||
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
release:
|
||||
required: true
|
||||
type: string
|
||||
|
||||
jobs:
|
||||
release-files:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
|
||||
- name: Login to DockerHub
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
|
||||
- name: Build dist image
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
context: .
|
||||
file: Dockerfile-builder
|
||||
load: true
|
||||
tags: builder
|
||||
|
||||
- name: Run dist docker
|
||||
run: |
|
||||
docker run -v ./dist:/home/node/app/dist builder sh make_dist.sh
|
||||
|
||||
|
||||
- name: Upload Files
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
tag_name: ${{ inputs.release }}
|
||||
files: |
|
||||
./dist/dizquetv-win-x64.exe
|
||||
./dist/dizquetv-win-x86.exe
|
||||
./dist/dizquetv-linux-x64
|
||||
./dist/dizquetv-macos-x64
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
13
.github/workflows/development-binaries.yaml
vendored
Normal file
13
.github/workflows/development-binaries.yaml
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
name: Development Binaries
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- dev/1.5.x
|
||||
|
||||
jobs:
|
||||
bianries:
|
||||
uses: ./.github/workflows/binaries-build.yaml
|
||||
with:
|
||||
release: development-binaries
|
||||
secrets: inherit
|
||||
13
.github/workflows/development-tag.yaml
vendored
Normal file
13
.github/workflows/development-tag.yaml
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
name: Development Tag
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- dev/1.5.x
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
uses: ./.github/workflows/docker-build.yaml
|
||||
with:
|
||||
tag: development
|
||||
secrets: inherit
|
||||
31
.github/workflows/docker-build.yaml
vendored
Normal file
31
.github/workflows/docker-build.yaml
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
name: Docker Build
|
||||
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
tag:
|
||||
required: true
|
||||
type: string
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
|
||||
- name: Login to DockerHub
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
tags: vexorian/dizquetv:${{ inputs.tag }}
|
||||
13
.github/workflows/edge-tag.yaml
vendored
Normal file
13
.github/workflows/edge-tag.yaml
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
name: Edge Tag
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- edge
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
uses: ./.github/workflows/docker-build.yaml
|
||||
with:
|
||||
tag: edge
|
||||
secrets: inherit
|
||||
13
.github/workflows/latest-tag.yaml
vendored
Normal file
13
.github/workflows/latest-tag.yaml
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
name: Latest Tag
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
uses: ./.github/workflows/docker-build.yaml
|
||||
with:
|
||||
tag: latest
|
||||
secrets: inherit
|
||||
13
.github/workflows/named-tag.yaml
vendored
Normal file
13
.github/workflows/named-tag.yaml
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
name: Named Tag
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
uses: ./.github/workflows/docker-build.yaml
|
||||
with:
|
||||
tag: ${{ github.ref_name }}
|
||||
secrets: inherit
|
||||
13
.github/workflows/tag-binaries.yaml
vendored
Normal file
13
.github/workflows/tag-binaries.yaml
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
name: Release Binaries
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- "*"
|
||||
|
||||
jobs:
|
||||
binaries:
|
||||
uses: ./.github/workflows/binaries-build.yaml
|
||||
with:
|
||||
release: ${{ github.ref_name }}
|
||||
secrets: inherit
|
||||
3
.gitignore
vendored
3
.gitignore
vendored
@ -4,4 +4,5 @@ bin/
|
||||
.pseudotv/
|
||||
.dizquetv/
|
||||
web/public/bundle.js
|
||||
*.orig
|
||||
*.orig
|
||||
package-lock.json
|
||||
23088
package-lock.json
generated
23088
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user