Skip to content

Commit

Permalink
Merge pull request #184 from FlowFuse/fix-org-rename
Browse files Browse the repository at this point in the history
Reusable workflow reference name change
  • Loading branch information
ppawlowski authored Sep 28, 2023
2 parents 1dfd630 + 5f7c4d0 commit 48f1e49
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
repository: 'flowforge/helm'
repository: 'flowfuse/helm'
path: 'helm'
# sets options for Docker build
# will tag contianers with GH tag name
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
repository: 'flowforge/helm'
repository: 'flowfuse/helm'
path: 'helm'
- name: Docker Meta Data
id: meta
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
repository: 'flowforge/helm'
repository: 'flowfuse/helm'
path: 'helm'
- name: Docker Meta Data
id: meta
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
repository: 'flowforge/helm'
repository: 'flowfuse/helm'
path: 'helm'
- name: Docker Meta Data
id: meta
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
repository: 'flowforge/helm'
repository: 'flowfuse/helm'
path: 'helm'
- name: Docker Meta Data
id: meta
Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
with:
repository: 'flowforge/helm'
repository: 'flowfuse/helm'
fetch-depth: 0
path: 'helm'
- name: Package
Expand All @@ -229,9 +229,9 @@ jobs:
cd helm
git checkout gh-pages
mv ../flowforge-*.tgz .
helm repo index --url https://flowforge.github.io/helm .
helm repo index --url https://flowfuse.github.io/helm .
git add .
git -c user.name='FlowForge Build Bot' -c user.email='noreply@flowforge.com' commit -m "Add ${{ github.ref_name }} helm chart"
git -c user.name='FlowFuse Build Bot' -c user.email='noreply@flowfuse.com' commit -m "Add ${{ github.ref_name }} helm chart"
git push origin
- name: Resync Maintenance
if: ${{ endsWith(github.ref, '.0') }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/fileserver-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ concurrency:
jobs:
build:
name: Build single-architecture container images
uses: flowforge/github-actions-workflows/.github/workflows/build_container_image.yml@cc8efbe5e4897e997d3b170a970a1afca9410273
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@7808b849474ae9bc8dfc7f6db19e66d241018c94
with:
image_name: 'file-server'
package_dependencies: |
Expand All @@ -37,7 +37,7 @@ jobs:
build-multi-architecture:
name: Build multi-architecture container image
needs: build
uses: flowforge/github-actions-workflows/.github/workflows/merge_multiarch_images.yml@cc8efbe5e4897e997d3b170a970a1afca9410273
uses: flowfuse/github-actions-workflows/.github/workflows/merge_multiarch_images.yml@7808b849474ae9bc8dfc7f6db19e66d241018c94
with:
image_name: 'file-server'
secrets:
Expand All @@ -46,7 +46,7 @@ jobs:
deploy-stage:
name: Deploy to staging environment
needs: build-multi-architecture
uses: flowforge/github-actions-workflows/.github/workflows/deploy_container_image.yml@cc8efbe5e4897e997d3b170a970a1afca9410273
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@7808b849474ae9bc8dfc7f6db19e66d241018c94
with:
environment: stage
service_name: 'file-server'
Expand All @@ -63,7 +63,7 @@ jobs:
if: github.ref_name == 'main'
name: Deploy to production environment
needs: [build-multi-architecture, deploy-stage]
uses: flowforge/github-actions-workflows/.github/workflows/deploy_container_image.yml@cc8efbe5e4897e997d3b170a970a1afca9410273
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@7808b849474ae9bc8dfc7f6db19e66d241018c94
with:
environment: production
service_name: 'file-server'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/flowforge-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ concurrency:
jobs:
build:
name: Build single-architecture container images
uses: flowforge/github-actions-workflows/.github/workflows/build_container_image.yml@cc8efbe5e4897e997d3b170a970a1afca9410273
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@7808b849474ae9bc8dfc7f6db19e66d241018c94
with:
image_name: 'forge-k8s'
package_dependencies: |
Expand All @@ -38,7 +38,7 @@ jobs:
build-multi-architecture:
name: Build multi-architecture container image
needs: build
uses: flowforge/github-actions-workflows/.github/workflows/merge_multiarch_images.yml@cc8efbe5e4897e997d3b170a970a1afca9410273
uses: flowfuse/github-actions-workflows/.github/workflows/merge_multiarch_images.yml@7808b849474ae9bc8dfc7f6db19e66d241018c94
with:
image_name: 'forge-k8s'
secrets:
Expand All @@ -47,7 +47,7 @@ jobs:
deploy-stage:
name: Deploy to staging environment
needs: build-multi-architecture
uses: flowforge/github-actions-workflows/.github/workflows/deploy_container_image.yml@cc8efbe5e4897e997d3b170a970a1afca9410273
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@7808b849474ae9bc8dfc7f6db19e66d241018c94
with:
environment: stage
service_name: 'forge-k8s'
Expand All @@ -64,7 +64,7 @@ jobs:
if: github.ref_name == 'main'
name: Deploy to production environment
needs: [build-multi-architecture, deploy-stage]
uses: flowforge/github-actions-workflows/.github/workflows/deploy_container_image.yml@cc8efbe5e4897e997d3b170a970a1afca9410273
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@7808b849474ae9bc8dfc7f6db19e66d241018c94
with:
environment: production
service_name: 'forge-k8s'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nodered-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ concurrency:

jobs:
build-stage-302:
uses: flowforge/github-actions-workflows/.github/workflows/build_container_image.yml@e3e734b910af78371b2c9a1c6856446d17421f50
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@e3e734b910af78371b2c9a1c6856446d17421f50
with:
environment: 'stage'
image_name: 'node-red'
Expand All @@ -36,7 +36,7 @@ jobs:
aws_access_key_id: ${{ secrets.STAGING_AWS_ID }}
aws_access_key_secret: ${{ secrets.STAGING_AWS_KEY }}
build-stage-223:
uses: flowforge/github-actions-workflows/.github/workflows/build_container_image.yml@e3e734b910af78371b2c9a1c6856446d17421f50
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@e3e734b910af78371b2c9a1c6856446d17421f50
with:
environment: 'stage'
image_name: 'node-red'
Expand All @@ -51,7 +51,7 @@ jobs:
aws_access_key_id: ${{ secrets.STAGING_AWS_ID }}
aws_access_key_secret: ${{ secrets.STAGING_AWS_KEY }}
build-stage-310:
uses: flowforge/github-actions-workflows/.github/workflows/build_container_image.yml@e3e734b910af78371b2c9a1c6856446d17421f50
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@e3e734b910af78371b2c9a1c6856446d17421f50
with:
environment: 'stage'
image_name: 'node-red'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/project-automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ on:
- opened
jobs:
add_to_product_board:
uses: flowforge/.github/.github/workflows/project-automation.yml@main
uses: flowfuse/.github/.github/workflows/project-automation.yml@main
secrets:
token: ${{ secrets.PROJECT_ACCESS_TOKEN }}

0 comments on commit 48f1e49

Please sign in to comment.