mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-04 20:19:46 +00:00
21 lines
463 B
YAML
Vendored
21 lines
463 B
YAML
Vendored
name: Release to Snapcraft
|
|
on:
|
|
release:
|
|
types: [created]
|
|
workflow_dispatch:
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: snapcore/action-build@v1
|
|
id: build
|
|
with:
|
|
path: packages
|
|
- uses: snapcore/action-publish@v1
|
|
env:
|
|
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_STORE_LOGIN }}
|
|
with:
|
|
snap: ${{ steps.build.outputs.snap }}
|
|
release: stable
|