Skip to content

Commit

Permalink
chore: bump version in civicsignal, roboshield, vpnmanager
Browse files Browse the repository at this point in the history
  • Loading branch information
VinneyJ committed Oct 9, 2024
1 parent b5ce7c4 commit 6ad4a21
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/civicsignalblog-deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: CivicSignal Blog | Deploy | PROD

on:
push:
branches: [main]
branches:
- main
- chore/build-arm-image

# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/roboshield-deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ name: RoboShield | Deploy | DEV

on:
push:
branches: [main]
branches:
- main
- chore/build-arm-image

paths:
- "apps/roboshield/**"
- "Dockerfile"
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/roboshield-deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: RoboShield | Deploy | PROD

on:
push:
branches: [main]
branches:
- main
- chore/build-arm-image

concurrency:
group: "${{ github.workflow }} @ ${{ github.ref }}"
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/vpnmanager-deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: VPN Manager | Deploy | DEV

on:
push:
branches: [main]
branches:
- main
- chore/build-arm-image
paths:
- "apps/vpnmanager/**"
- "Dockerfile.vpnmanager"
Expand Down Expand Up @@ -31,6 +33,10 @@ jobs:
with:
fetch-depth: 0

# Add support for more platforms with QEMU (optional)
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

Expand Down Expand Up @@ -60,6 +66,7 @@ jobs:
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new
context: .
platforms: linux/amd64,linux/arm64
push: true
secrets: |
"sentry_auth_token=${{ secrets.SENTRY_AUTH_TOKEN }}"
Expand Down
2 changes: 1 addition & 1 deletion apps/civicsignalblog/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "civicsignalblog",
"version": "0.1.13",
"version": "0.1.14",
"private": true,
"author": "Code for Africa <[email protected]>",
"description": "This is the (temporary) CivicSignal blog",
Expand Down
2 changes: 1 addition & 1 deletion apps/roboshield/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "roboshield",
"version": "0.1.13",
"version": "0.1.14",
"private": true,
"scripts": {
"build-server": "tsc --project tsconfig.server.json",
Expand Down
2 changes: 1 addition & 1 deletion apps/vpnmanager/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vpnmanager",
"version": "0.1.0",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down

0 comments on commit 6ad4a21

Please sign in to comment.