Skip to content

Commit

Permalink
remove vars step
Browse files Browse the repository at this point in the history
  • Loading branch information
Habiba Zaman committed Dec 5, 2023
1 parent 91b9df6 commit 8ffb549
Showing 1 changed file with 1 addition and 24 deletions.
25 changes: 1 addition & 24 deletions .github/workflows/.merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,28 +11,6 @@ concurrency:
cancel-in-progress: true

jobs:
# Find initial PR number (for merge queues)
vars:
name: Build and Deploy Vars
outputs:
tag: ${{ steps.deploys.outputs.tag }}
runs-on: ubuntu-22.04
steps:
- name: Set Variables
id: deploys
run: |
# Get PR number (different process for merge queue)
if [ ${{ github.event_name }} == 'pull_request' ]
then
tag=${{ github.event.number }}
else
tag=$(echo ${{ github.event.merge_group.head_ref }} | grep -Eo "queue/main/pr-[0-9]+" | cut -d '-' -f2)
fi
echo "Summary ---"
echo -e "\tTag (PR no): ${tag}"
echo "tag=${tag}" >> $GITHUB_OUTPUT
# https://github.com/bcgov-nr/action-builder-ghcr
builds:
name: Builds
Expand All @@ -49,8 +27,7 @@ jobs:
with:
keep_versions: 50
package: ${{ matrix.package }}
tag: ${{ needs.vars.outputs.tag }}
tag_fallback: latest
tag: latest
triggers: ('${{ matrix.package }}/')


Expand Down

0 comments on commit 8ffb549

Please sign in to comment.