Skip to content

Commit

Permalink
fix: 🩹 beta ci action not running
Browse files Browse the repository at this point in the history
  • Loading branch information
realashleybailey committed Nov 8, 2023
1 parent 03e082b commit dc225f8
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/beta-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
push:
tags:
- "v*.*.*-beta.*"
- "*.*.*-beta.*"
- "v*.*.*-beta"
- "*.*.*-beta"
workflow_dispatch:
inputs:
tag:
Expand Down Expand Up @@ -49,6 +52,8 @@ jobs:
# Checkout the repo
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false

# Use NPM and Node.js to install dependencies
- name: Use Node.js 18.18.2
Expand Down Expand Up @@ -181,6 +186,11 @@ jobs:
with:
strip_v: true

# Fallback to github.event.inputs.tag if tag is empty
- name: Fallback to github.event.inputs.tag if tag is empty
if: steps.tag.outputs.tag == ''
run: echo "::set-output name=tag::${{ github.event.inputs.tag }}"

# Create manifest list and push
- name: Create manifest list and push to Registry
working-directory: /tmp/digests
Expand Down

0 comments on commit dc225f8

Please sign in to comment.