Skip to content

Commit

Permalink
Merge pull request #11 from bcgov/workflow
Browse files Browse the repository at this point in the history
remove vars step
  • Loading branch information
habibaz authored Dec 5, 2023
2 parents b4e9f39 + 8ffb549 commit dba789a
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 dba789a

Please sign in to comment.