Files
bab-app/.gitea/workflows/build.yaml
Patrick Toal f6689cbc5c
All checks were successful
Build BAB Application Deployment Artifact / build (push) Successful in 2m37s
Change url from secret to var
2023-12-29 12:19:39 -05:00

45 lines
1.6 KiB
YAML

name: Build BAB Application Deployment Artifact
run-name: ${{ gitea.actor }} is building a BAB App artifact 🚀
on:
push:
branches:
- main
- devel
jobs:
build:
runs-on: ubuntu-18.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '20.x'
- name: Install dependencies
run: npm install
- name: Install yarn
run: npm install --global yarn
- name: Install Quasar CLI
run: npm install -g @quasar/cli
- name: Build Project
run: quasar build -m pwa
- name: Get Version Number
id: get_version
run: echo "::set-output name=VERSION::$(node -p "require('./package.json').version")"
# - name: Create Tarball of Build
# run: tar -czvf build-${{ steps.get_version.outputs.VERSION }}.tar.gz dist/pwa
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: build-artifact-${{ steps.get_version.outputs.VERSION }}.${{ gitea.run_number }}
# path: build-${{ steps.get_version.outputs.VERSION }}.tar.gz
path: dist/pwa/
- name: Trigger Ansible Deploy Playbook
uses: https://github.com/distributhor/workflow-webhook@v3
with:
webhook_url: ${{ vars.WEBHOOK_URL }}
webhook_secret: ${{ secrets.WEBHOOK_SECRET }}
verify_ssl: false
data: '{ "artifact_url": "${{ gitea.server_url }}/${{ gitea.repository }}/actions/runs/${{ gitea.run_id}}/build-artifact-${{ steps.get_version.outputs.VERSION }}.${{ gitea.run_number }}" }'