Revert "Run bundle step before minify" #202
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: goreleaser | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
goreleaser: | |
runs-on: ubuntu-20.04 | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Unshallow | |
run: git fetch --prune --unshallow | |
- | |
name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: stable | |
- | |
name: Set up Snapcraft | |
run: | | |
sudo apt-get update | |
sudo apt-get -yq --no-install-suggests --no-install-recommends install snapcraft | |
- | |
name: Dockerhub Login | |
run: | | |
echo '${{ secrets.DOCKER_PASSWORD }}' | docker login --username '${{ secrets.DOCKER_USERNAME }}' --password-stdin | |
- | |
name: libssl1.1 => libssl1.0-dev for OSXCross | |
run: | | |
echo 'deb http://security.ubuntu.com/ubuntu bionic-security main' | sudo tee -a /etc/apt/sources.list | |
sudo apt update && apt-cache policy libssl1.0-dev | |
sudo apt-get install libssl1.0-dev | |
- | |
name: OSXCross for CGO Support | |
run: | | |
mkdir ../../osxcross | |
git clone https://github.com/plentico/osxcross-target.git ../../osxcross/target | |
- | |
name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v6 | |
with: | |
version: latest | |
args: release --clean --verbose | |
env: | |
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.snapcraft_token }} |