typo fix #2
Workflow file for this run
This file contains hidden or 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: Release Firecracker RootFS | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
build: | |
name: GoReleaser build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go 1.24.1 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.24.1 | |
id: go | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@master | |
with: | |
version: latest | |
args: release --config=build/.goreleaser.yaml | |
env: | |
GITHUB_TOKEN: ${{ secrets.FIRECRACKER_ROOTFS_RELEASE_TOKEN }} |