Skip to content

Commit

Permalink
update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
runette committed Feb 13, 2024
1 parent 3cc78ac commit a78fead
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 8 deletions.
59 changes: 52 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,37 +22,82 @@ jobs:
uses: martinbeentjes/[email protected]
with:
path: bcp

- name: Check for Tag
run: |
if git show-ref --tags --verify --quiet "refs/tags/${{ steps.package-version.outputs.current-version}}"; then
echo "Tag ${{ steps.package-version.outputs.current-version}} exists"
exit 1
fi
- name: Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: npm install and npm run deploy
- name: npm run deploy test mode
if: github.event.pull_request.merged == false
run: |
cd bcp
npm i --force
npx patch-package
cd sba
chmod a+x build-test.sh
npm run test
cd ../dist
zip -r distro.zip .
- name: npm run deploy prod mode
if: github.event.pull_request.merged == true
run: |
cd sba
chmod a+x build.sh
npm run build
cd ../dist
zip -r distro.zip .
- name: Set to Staging
uses: fjogeleit/yaml-update-action@main
if: github.event.pull_request.merged == false
with:
valueFile: 'app.yaml'
propertyPath: 'service'
value: staging
commitChange: false

- name: 'Authenticate to Google Cloud'
uses: 'google-github-actions/auth@v1'
with:
workload_identity_provider: 'projects/927628257279/locations/global/workloadIdentityPools/my-pool/providers/my-provider'
service_account: '[email protected]'
project_id: 'ultima-ratio-221014'

- name: 'Deploy'

- name: 'Deploy to Staging'
if: github.event.pull_request.merged == false
uses: 'google-github-actions/deploy-appengine@v1'

- name: Set to Production
uses: fjogeleit/yaml-update-action@main
if: github.event.pull_request.merged == true

with:
valueFile: 'app.yaml'
propertyPath: 'service'
value: default
commitChange: false

- name: Get release tag
id: version
run: |
echo "::set-output name=tag::$(echo ${{ steps.package-version.outputs.current-version}} | sed 's/\./-/g')"
- name: 'Deploy to Production'
if: github.event.pull_request.merged == true
uses: 'google-github-actions/deploy-appengine@v1'
with:
version: ${{ steps.version.outputs.tag}}

- name: Push Build to Releases
uses: ncipollo/release-action@v1
if: github.event.pull_request.merged == true
with:
artifacts: "dist/distro.zip"
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ steps.package-version.outputs.current-version}}

1 change: 0 additions & 1 deletion bcp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
"@angular/platform-browser-dynamic": "17",
"@angular/router": "17",
"@googlemaps/markerclusterer": "*",
"@types/firebase": "*",
"@types/supercluster": "^7.1.3",
"firebase": "*",
"ng-gallery": "8",
Expand Down

0 comments on commit a78fead

Please sign in to comment.