diff --git a/.github/workflows/gradle-release-plugins.yml b/.github/workflows/gradle-release-plugins.yml index e039ce6ec94..59a4934009a 100644 --- a/.github/workflows/gradle-release-plugins.yml +++ b/.github/workflows/gradle-release-plugins.yml @@ -60,7 +60,8 @@ jobs: GITHUB_PAT: ${{ secrets.GH_PERSONAL_TOKEN }} run: | chmod +x ./dev-tools/release-plugins.sh; - ./release-plugins.sh \ + + ./dev-tools/release-plugins.sh \ --release-version=${{github.event.inputs.releaseVersion}} \ --next-version=${{github.event.inputs.nextVersion}} \ --yes \ @@ -72,7 +73,8 @@ jobs: GITHUB_PAT: ${{ secrets.GH_PERSONAL_TOKEN }} run: | chmod +x ./dev-tools/release-plugins.sh; - ./release-plugins.sh \ + + ./dev-tools/release-plugins.sh \ --release-version=${{github.event.inputs.releaseVersion}} \ --next-version=${{github.event.inputs.nextVersion}} \ --dry-run \ diff --git a/.github/workflows/setversion-tag-plugins.yml b/.github/workflows/setversion-tag-plugins.yml index b8d0a9248d5..6c751d4fa6b 100644 --- a/.github/workflows/setversion-tag-plugins.yml +++ b/.github/workflows/setversion-tag-plugins.yml @@ -21,22 +21,6 @@ jobs: with: fetch-depth: 0 - # Checkout GitHub Actions - - uses: actions/checkout@v4 - with: - repository: kestra-io/actions - path: actions - ref: main - - # Setup build - - uses: ./actions/.github/actions/setup-build - id: build - with: - java-enabled: true - node-enabled: true - python-enabled: true - caches-enabled: true - # Get Plugins List - name: Get Plugins List uses: ./.github/actions/plugins-list @@ -56,7 +40,8 @@ jobs: GITHUB_PAT: ${{ secrets.GH_PERSONAL_TOKEN }} run: | chmod +x ./dev-tools/setversion-tag-plugins.sh; - ./tag-release-plugins.sh \ + + ./dev-tools/setversion-tag-plugins.sh \ --release-version=${{github.event.inputs.releaseVersion}} \ --yes \ ${{ steps.plugins-list.outputs.repositories }} @@ -67,7 +52,8 @@ jobs: GITHUB_PAT: ${{ secrets.GH_PERSONAL_TOKEN }} run: | chmod +x ./dev-tools/setversion-tag-plugins.sh; - ./tag-release-plugins.sh \ + + ./dev-tools/setversion-tag-plugins.sh \ --release-version=${{github.event.inputs.releaseVersion}} \ --dry-run \ --yes \ diff --git a/.github/workflows/setversion-tag.yml b/.github/workflows/setversion-tag.yml index 4812666c6d3..52e7140e157 100644 --- a/.github/workflows/setversion-tag.yml +++ b/.github/workflows/setversion-tag.yml @@ -39,22 +39,6 @@ jobs: with: fetch-depth: 0 - # Checkout GitHub Actions - - uses: actions/checkout@v4 - with: - repository: kestra-io/actions - path: actions - ref: main - - # Setup build - - uses: ./actions/.github/actions/setup-build - id: build - with: - java-enabled: true - node-enabled: true - python-enabled: true - caches-enabled: true - - name: Configure Git run: | git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"