[NETPROD-3585] Added name filter in doctl for certificates (#1509) #290
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: snapcraft-candidate | |
# Builds and publishes the package to the candidate channel on merge to main. | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build-and-publish: | |
name: 'Snapcraft: Candidate Release' | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
# fetch-depth: 0 fetches all history for all branches and tags | |
fetch-depth: 0 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USER }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build snap | |
id: build | |
run: | | |
make _build_snap && \ | |
find doctl_v*.snap -exec echo "snap={}" >> "$GITHUB_OUTPUT" \; | |
- uses: snapcore/action-publish@master | |
env: | |
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAP_TOKEN }} | |
with: | |
snap: ${{ steps.build.outputs.snap }} | |
release: candidate |