mirror of
https://github.com/httpie/cli.git
synced 2024-11-29 03:03:44 +01:00
6f77e144e4
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
29 lines
727 B
YAML
29 lines
727 B
YAML
name: Release snap
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
branch:
|
|
description: "The branch, tag or SHA to release from"
|
|
required: true
|
|
default: "master"
|
|
level:
|
|
description: "Release level: stable, candidate, beta, edge"
|
|
required: true
|
|
default: "edge"
|
|
|
|
jobs:
|
|
snap:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ github.event.inputs.branch }}
|
|
- uses: snapcore/action-build@v1
|
|
id: build
|
|
- uses: snapcore/action-publish@v1
|
|
with:
|
|
store_login: ${{ secrets.SNAP_STORE_LOGIN }}
|
|
snap: ${{ steps.build.outputs.snap }}
|
|
release: ${{ github.event.inputs.level }}
|