Skip to content

Commit

Permalink
build: trigger technology release automatically (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
ndr-brt authored Nov 7, 2024
1 parent effe80e commit 8bb8b87
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,23 @@ jobs:
chmod +x ./scripts/github_action.sh
./scripts/github_action.sh "eclipse-edc" "${{ matrix.repository }}" "release.yml" "" "${{ secrets.ORG_GITHUB_BOT_USER }}" "${{ secrets.ORG_GITHUB_BOT_TOKEN }}" "${{ inputs.branch }}"
Release-Technology-Repositories:
runs-on: ubuntu-latest
needs: [ Release-Components ]
strategy:
matrix:
repository: [ "technology-aws", "technology-azure", "technology-gcp" ]
steps:
- uses: actions/checkout@v4
- name: "Log version"
run: |
echo "Will release version ${{ inputs.version }}"
- name: "Release ${{ matrix.test-def.repo }}"
run: |
chmod +x ./scripts/github_action.sh
./scripts/github_action.sh "eclipse-edc" "${{ matrix.repository }}" "release.yml" "" "${{ secrets.ORG_GITHUB_BOT_USER }}" "${{ secrets.ORG_GITHUB_BOT_TOKEN }}" "${{ inputs.branch }}"
Post-To-Discord:
needs: [ Publish-Components, Release-Components ]
if: always()
Expand Down

0 comments on commit 8bb8b87

Please sign in to comment.