add step for metadata debug, see if it runs by checking workflow tag name

pull/245/head
dgtlmoon 3 years ago
parent 2fa93cba3a
commit fe3c20b618

@ -6,12 +6,27 @@ on:
types: [completed] types: [completed]
release: release:
types: [created] types: [created, published, edited]
jobs: jobs:
metadata:
runs-on: ubuntu-latest
steps:
- name: Show metadata
run: |
echo SHA ${{ github.sha }}
echo github.ref: ${{ github.ref }}
echo github_ref: $GITHUB_REF
echo Event name: ${{ github.event_name }}
echo Ref ${{ github.ref }}
echo c: ${{ github.event.workflow_run.conclusion }}
echo r: ${{ github.event.workflow_run }}
echo tname: ${{ github.event.release.tag_name }}
set
on-success: on-success:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }} if: ${{ github.event.workflow_run.conclusion == 'success' || ${{ github.event.release.tag_name }} != '' }}
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Set up Python 3.9 - name: Set up Python 3.9
@ -31,9 +46,6 @@ jobs:
# COPY'ed by Dockerfile into changedetectionio/ of the image, then read by the server in store.py # COPY'ed by Dockerfile into changedetectionio/ of the image, then read by the server in store.py
echo ${{ github.sha }} > changedetectionio/source.txt echo ${{ github.sha }} > changedetectionio/source.txt
echo ${{ github.ref }} > changedetectionio/tag.txt echo ${{ github.ref }} > changedetectionio/tag.txt
echo Event name: ${{ github.event_name }}
echo Ref ${{ github.ref }}
set
- name: Set up QEMU - name: Set up QEMU
uses: docker/setup-qemu-action@v1 uses: docker/setup-qemu-action@v1

Loading…
Cancel
Save