Skip to content

Update Plugin Artifacts Links for v0.219.6 #1372

Update Plugin Artifacts Links for v0.219.6

Update Plugin Artifacts Links for v0.219.6 #1372

Workflow file for this run

name: testing for PR
on:
pull_request:
jobs:
build:
name: testing PR build
runs-on: arc-runner-set
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Run tests
run: |
if cat ./plugin.yaml | grep uri: | cut -c 10-200 | xargs -n 1 curl -o /dev/null --silent --head --write-out '%{http_code}\n' -L | grep -q "404"; then
echo 'Artifacts links are broken'
exit 1
else
echo 'Artifacts links are valid'
fi