mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-25 18:15:40 +00:00
change publish workflow (#390)
This commit is contained in:
parent
4dd925caf0
commit
f3bb86d905
2 changed files with 26 additions and 28 deletions
27
.github/workflows/publish.yaml
vendored
27
.github/workflows/publish.yaml
vendored
|
@ -4,9 +4,6 @@ on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
release:
|
|
||||||
types:
|
|
||||||
- published
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
|
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
|
||||||
|
@ -29,28 +26,4 @@ jobs:
|
||||||
secrets:
|
secrets:
|
||||||
GH_TOKEN: ${{ secrets.CR_PAT }}
|
GH_TOKEN: ${{ secrets.CR_PAT }}
|
||||||
|
|
||||||
publish-tag:
|
|
||||||
name: "Publish Tag"
|
|
||||||
if: github.event_name == 'release'
|
|
||||||
uses: hay-kot/homebox/.github/workflows/partial-publish.yaml@main
|
|
||||||
with:
|
|
||||||
release: true
|
|
||||||
tag: ${{ github.event.release.tag_name }}
|
|
||||||
secrets:
|
|
||||||
GH_TOKEN: ${{ secrets.CR_PAT }}
|
|
||||||
|
|
||||||
deploy-docs:
|
|
||||||
name: Deploy docs
|
|
||||||
needs:
|
|
||||||
- publish-tag
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout main
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: Deploy docs
|
|
||||||
uses: mhausenblas/mkdocs-deploy-gh-pages@master
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
CONFIG_FILE: docs/mkdocs.yml
|
|
||||||
EXTRA_PACKAGES: build-base
|
|
||||||
|
|
27
.github/workflows/tag.yaml
vendored
27
.github/workflows/tag.yaml
vendored
|
@ -17,7 +17,6 @@ jobs:
|
||||||
name: "Frontend and End-to-End Tests"
|
name: "Frontend and End-to-End Tests"
|
||||||
uses: hay-kot/homebox/.github/workflows/partial-frontend.yaml@main
|
uses: hay-kot/homebox/.github/workflows/partial-frontend.yaml@main
|
||||||
|
|
||||||
|
|
||||||
goreleaser:
|
goreleaser:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
@ -49,3 +48,29 @@ jobs:
|
||||||
args: release --clean
|
args: release --clean
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
publish-tag:
|
||||||
|
name: "Publish Tag"
|
||||||
|
if: github.event_name == 'release'
|
||||||
|
uses: hay-kot/homebox/.github/workflows/partial-publish.yaml@main
|
||||||
|
with:
|
||||||
|
release: true
|
||||||
|
tag: ${{ github.ref }}
|
||||||
|
secrets:
|
||||||
|
GH_TOKEN: ${{ secrets.CR_PAT }}
|
||||||
|
|
||||||
|
deploy-docs:
|
||||||
|
name: Deploy docs
|
||||||
|
needs:
|
||||||
|
- publish-tag
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout main
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Deploy docs
|
||||||
|
uses: mhausenblas/mkdocs-deploy-gh-pages@master
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
CONFIG_FILE: docs/mkdocs.yml
|
||||||
|
EXTRA_PACKAGES: build-base
|
Loading…
Reference in a new issue