Skip to content

Commit

Permalink
Add deployment steps
Browse files Browse the repository at this point in the history
  • Loading branch information
oguzhankoral committed Jun 9, 2024
1 parent 9528935 commit e103bb7
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/v3-fake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ jobs:
build:

runs-on: ubuntu-latest
outputs:
version: ${{ steps.set-version.outputs.version }}

steps:
- uses: actions/checkout@v4
Expand All @@ -28,3 +30,26 @@ jobs:
speckle_connector.rb
speckle_connector/**/*
compression-level: 0 # no compression
- id: set-version
name: Set version to output
run: echo "version=3.0.0-fake" >> "$GITHUB_OUTPUT" # version will be retrieved from tag?


deploy-installers:
runs-on: ubuntu-latest
needs: build
steps:
- name: 🔫 Trigger Build Installers
uses: ALEEF02/[email protected]
with:
workflow: Build Sketchup
repo: specklesystems/connector-installers
token: ${{ secrets.CONNECTORS_GH_TOKEN }}
inputs: '{ "run_id": "${{ github.run_id }}", "version": "${{ needs.build.outputs.version }}" }'
ref: main
wait-for-completion: true
wait-for-completion-interval: 10s
wait-for-completion-timeout: 10m
display-workflow-run-url: true
display-workflow-run-url-interval: 10s

0 comments on commit e103bb7

Please sign in to comment.