mirror of
https://github.com/actions/versions-package-tools.git
synced 2025-12-12 20:56:49 +00:00
Compare commits
5 Commits
fix-7z-arm
...
arm64-test
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1a0cb4bf74 | ||
|
|
d33dc40357 | ||
|
|
4b4e16b9dd | ||
|
|
fcb2d9a895 | ||
|
|
5e3e49f869 |
18
.github/workflows/build-tool-packages.yml
vendored
18
.github/workflows/build-tool-packages.yml
vendored
@@ -215,18 +215,14 @@ jobs:
|
|||||||
|
|
||||||
- name: Publish Release
|
- name: Publish Release
|
||||||
id: create_release
|
id: create_release
|
||||||
|
uses: actions/create-release@v1
|
||||||
env:
|
env:
|
||||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
shell: bash
|
with:
|
||||||
run: |
|
tag_name: ${{ inputs.tool-version }}-${{ github.run_id }}
|
||||||
tag_name="${{ inputs.tool-version }}-${{ github.run_id }}"
|
release_name: ${{ inputs.tool-version }}
|
||||||
gh release create "$tag_name" \
|
body: |
|
||||||
--repo="$GITHUB_REPOSITORY" \
|
${{ steps.generate-release-body.outputs.RELEASE_BODY }}
|
||||||
--title="${{ inputs.tool-version }}" \
|
|
||||||
--notes="${{ steps.generate-release-body.outputs.RELEASE_BODY }}"
|
|
||||||
|
|
||||||
release_id=$(gh release view "$tag_name" --repo "$GITHUB_REPOSITORY" --json databaseId --jq '.databaseId')
|
|
||||||
echo "id=$release_id" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Generate hash for packages
|
- name: Generate hash for packages
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
2
.github/workflows/common_tests.yml
vendored
2
.github/workflows/common_tests.yml
vendored
@@ -7,7 +7,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Install Pester
|
- name: Install Pester
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ jobs:
|
|||||||
name: Create Pull Request
|
name: Create Pull Request
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
|
|||||||
8
.github/workflows/get-new-tool-versions.yml
vendored
8
.github/workflows/get-new-tool-versions.yml
vendored
@@ -30,7 +30,7 @@ jobs:
|
|||||||
outputs:
|
outputs:
|
||||||
versions_output: ${{ steps.Get_new_versions.outputs.TOOL_VERSIONS }}
|
versions_output: ${{ steps.Get_new_versions.outputs.TOOL_VERSIONS }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
@@ -45,7 +45,7 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
TOOL_VERSIONS: ${{needs.find_new_versions.outputs.versions_output}}
|
TOOL_VERSIONS: ${{needs.find_new_versions.outputs.versions_output}}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
@@ -75,7 +75,7 @@ jobs:
|
|||||||
TOOL_VERSIONS: ${{needs.find_new_versions.outputs.versions_output}}
|
TOOL_VERSIONS: ${{needs.find_new_versions.outputs.versions_output}}
|
||||||
environment: Get Available Tools Versions - Publishing Approval
|
environment: Get Available Tools Versions - Publishing Approval
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
@@ -95,7 +95,7 @@ jobs:
|
|||||||
needs: [find_new_versions, check_new_versions, trigger_builds]
|
needs: [find_new_versions, check_new_versions, trigger_builds]
|
||||||
if: failure()
|
if: failure()
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
|
|||||||
4
.github/workflows/get-tools-new-versions.yml
vendored
4
.github/workflows/get-tools-new-versions.yml
vendored
@@ -42,7 +42,7 @@ jobs:
|
|||||||
name: 'Searching for new versions of ${{ matrix.tool.name }}'
|
name: 'Searching for new versions of ${{ matrix.tool.name }}'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v3
|
||||||
- id: get-new-tool-versions
|
- id: get-new-tool-versions
|
||||||
name: Get new tool versions
|
name: Get new tool versions
|
||||||
run: |
|
run: |
|
||||||
@@ -71,7 +71,7 @@ jobs:
|
|||||||
needs: [find-new-tool-versions]
|
needs: [find-new-tool-versions]
|
||||||
if: failure()
|
if: failure()
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v2
|
||||||
- id: get-failed-jobs
|
- id: get-failed-jobs
|
||||||
name: Get failed jobs
|
name: Get failed jobs
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
4
.github/workflows/validate-manifest.yml
vendored
4
.github/workflows/validate-manifest.yml
vendored
@@ -24,7 +24,7 @@ jobs:
|
|||||||
validation:
|
validation:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
@@ -37,7 +37,7 @@ jobs:
|
|||||||
needs: [validation]
|
needs: [validation]
|
||||||
if: failure()
|
if: failure()
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user