test: Simplify asserts by using ElementsMatch (#1442) #54
Workflow file for this run
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: tagged-release | |
on: | |
push: | |
tags: | |
- 'v[1-9].[0-9]+.[0-9]+' | |
jobs: | |
github-release: | |
name: 'GitHub Release' | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
# https://github.com/marketplace/actions/goreleaser-action#usage | |
# note the fetch-depth: 0 input in Checkout step. It is required for | |
# the changelog to work correctly | |
fetch-depth: 0 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USER }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.21.x | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
distribution: goreleaser | |
version: latest | |
args: release --rm-dist | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
snapcraft-stable: | |
name: 'Snapcraft: Stable Release' | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
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: stable |