Bump version #27
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: | |
# run only against tags | |
tags: | |
- "*" | |
# permissions: | |
# contents: write | |
# packages: write | |
# issues: write | |
jobs: | |
goreleaser: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Fetch tags | |
run: git fetch --force --tags | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.20.x | |
- name: Log in to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
distribution: goreleaser | |
version: latest | |
args: release --clean | |
env: | |
GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }} | |
- name: Upload AMD64 DEB artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: alpacon_${{ github.ref_name }}_linux_amd64.deb | |
path: dist/alpacon_${{ github.ref_name }}_linux_amd64.deb | |
- name: Upload AMD64 RPM artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: alpacon-${{ github.ref_name }}-linux_amd64.rpm | |
path: dist/alpacon-${{ github.ref_name }}-linux_amd64.rpm | |
packagecloud-deploy: | |
needs: goreleaser | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download AMD64 DEB Artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: alpacon-${{ github.ref_name }}-linux_amd64.deb | |
- name: Download AMD64 RPM Artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: alpacon-${{ github.ref_name }}-linux_amd64.rpm | |
- run: ls | |
- name: Upload AMD64 DEB to PackageCloud | |
uses: danielmundi/upload-packagecloud@v1 | |
with: | |
PACKAGE-NAME: alpacon_${{ github.ref_name }}_linux_amd64.deb | |
PACKAGECLOUD-USERNAME: alpacanetworks | |
PACKAGECLOUD-REPO: alpacon | |
PACKAGECLOUD-DISTRIB: any/any | |
PACKAGECLOUD-TOKEN: ${{ secrets.PACKAGECLOUD_TOKEN }} | |
- name: Upload AMD64 RPM to PackageCloud | |
uses: danielmundi/upload-packagecloud@v1 | |
with: | |
PACKAGE-NAME: alpacon_${{ github.ref_name }}_linux_amd64.rpm | |
PACKAGECLOUD-USERNAME: alpacanetworks | |
PACKAGECLOUD-REPO: alpacon | |
PACKAGECLOUD-DISTRIB: rpm_any/rpm_any | |
PACKAGECLOUD-TOKEN: ${{ secrets.PACKAGECLOUD_TOKEN }} |