From 7cec04080c9d0f9ed42009e1a44f4653420aa37f Mon Sep 17 00:00:00 2001 From: Levi Armstrong Date: Wed, 15 Jan 2025 13:53:17 -0600 Subject: [PATCH] fixup --- .github/workflows/package_debian.yml | 54 ++++++++++++++-------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/.github/workflows/package_debian.yml b/.github/workflows/package_debian.yml index b61999f1..798a0352 100644 --- a/.github/workflows/package_debian.yml +++ b/.github/workflows/package_debian.yml @@ -9,36 +9,36 @@ on: workflow_dispatch: jobs: - get-tag: - # Pre-job to fetch the latest tag - runs-on: ubuntu-latest - outputs: - major: ${{ steps.extract_tag.outputs.major }} - minor: ${{ steps.extract_tag.outputs.minor }} - steps: - - name: Checkout repository - uses: actions/checkout@v4 - with: - fetch-depth: 0 # Ensure all history and tags are fetched - - - name: Get latest tag - id: extract_tag - run: | - latest_tag=$(git describe --tags `git rev-list --tags --max-count=1`) - echo "Latest tag: $latest_tag" - - # Extract major and minor version from the tag - IFS='.' read -r major minor patch <<< "$latest_tag" - echo "Major: $major" - echo "Minor: $minor" - - # Set as output variables - echo "::set-output name=major::$major" - echo "::set-output name=minor::$minor" + # get-tag: + # # Pre-job to fetch the latest tag + # runs-on: ubuntu-latest + # outputs: + # major: ${{ steps.extract_tag.outputs.major }} + # minor: ${{ steps.extract_tag.outputs.minor }} + # steps: + # - name: Checkout repository + # uses: actions/checkout@v4 + # with: + # fetch-depth: 0 # Ensure all history and tags are fetched + + # - name: Get latest tag + # id: extract_tag + # run: | + # latest_tag=$(git describe --tags `git rev-list --tags --max-count=1`) + # echo "Latest tag: $latest_tag" + + # # Extract major and minor version from the tag + # IFS='.' read -r major minor patch <<< "$latest_tag" + # echo "Major: $major" + # echo "Minor: $minor" + + # # Set as output variables + # echo "::set-output name=major::$major" + # echo "::set-output name=minor::$minor" Debian: name: ${{ matrix.distro }} - needs: get-tag # Make sure the 'ci' job waits for the 'get-tag' job to finish + # needs: get-tag # Make sure the 'ci' job waits for the 'get-tag' job to finish runs-on: ubuntu-latest strategy: fail-fast: false