Update .github/workflows/website.yaml
This commit is contained in:
parent
080c9d3a48
commit
2cf0d62aad
40
.github/workflows/website.yaml
vendored
40
.github/workflows/website.yaml
vendored
@ -7,16 +7,48 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build NPM Project
|
name: Build NPM Project
|
||||||
uses: ztimson/actions/.github/workflows/npm.yaml@develop
|
runs-on: ubuntu-latest
|
||||||
|
container: node
|
||||||
|
steps:
|
||||||
|
- name: Clone Repository
|
||||||
|
uses: ztimson/actions/clone@develop
|
||||||
|
|
||||||
|
- name: Install Dependencies
|
||||||
|
run: npm i
|
||||||
|
|
||||||
|
- name: Build Project
|
||||||
|
run: npm run build
|
||||||
|
|
||||||
|
- name: Upload Artifacts
|
||||||
|
if: ${{inputs.artifacts}} != "false"
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
repository: ${{github.server_url}}/${{github.repository}}.git
|
name: website
|
||||||
artifact_name: website
|
path: dist
|
||||||
artifacts: dist
|
retention-days: 7
|
||||||
|
|
||||||
|
tag:
|
||||||
|
name: Tag Version
|
||||||
|
needs: build
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container: node
|
||||||
|
steps:
|
||||||
|
- name: Clone Repository
|
||||||
|
uses: ztimson/actions/clone@develop
|
||||||
|
|
||||||
|
- name: Get Version Number
|
||||||
|
run: echo "VERSION=$(cat package.json | grep version | grep -Eo ':.+' | grep -Eo '[[:alnum:]\.\/\-]+')" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Tag Version
|
||||||
|
uses: ztimson/actions/tag@develop
|
||||||
|
with:
|
||||||
|
tag: ${{env.VERSION}}
|
||||||
|
|
||||||
publish:
|
publish:
|
||||||
name: Build & Push Dockerfile
|
name: Build & Push Dockerfile
|
||||||
needs: build
|
needs: build
|
||||||
uses: ztimson/actions/.github/workflows/docker.yaml@develop
|
uses: ztimson/actions/.github/workflows/docker.yaml@develop
|
||||||
with:
|
with:
|
||||||
|
name: ztimson/291st
|
||||||
repository: ${{github.server_url}}/${{github.repository}}.git
|
repository: ${{github.server_url}}/${{github.repository}}.git
|
||||||
pass: ${{secrets.DEPLOY_TOKEN}}
|
pass: ${{secrets.DEPLOY_TOKEN}}
|
||||||
|
Loading…
Reference in New Issue
Block a user