Skip to content

fixed wrong action name #1

fixed wrong action name

fixed wrong action name #1

name: snap publish release
on:
push:
tags:
- "v*"
jobs:
runs-on: ubuntu-latest

Check failure on line 9 in .github/workflows/snap-publish-release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/snap-publish-release.yml

Invalid workflow file

You have an error in your yaml syntax on line 9
steps:
- uses: actions/checkout@v4
- name: build snap
uses: snapcore/action-build@v1
id: build
- name: publish stable
uses: snapcore/action-publish@v1
env:
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAP_STORE_LOGIN }}
with:
snap: ${{ steps.build.outputs.snap }}
release: stable
- name: publish candidate
uses: snapcore/action-publish@v1
env:
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAP_STORE_LOGIN }}
with:
snap: ${{ steps.build.outputs.snap }}
release: candidate