v1.3.5 #31
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: Go | |
on: | |
release: | |
types: [ "created" ] | |
jobs: | |
build_and_upload_assets: | |
permissions: write-all | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.17.2 | |
- name: Update go.mod to use Go 1.17 | |
run: | | |
sed -i 's/go 1.20/go 1.17/' go.mod | |
- name: Download dependencies | |
run: go mod tidy | |
- name: Build Linux arm64 | |
run: | | |
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o tgState main.go | |
- name: Zip Linux amd64 | |
run: | | |
sudo apt-get install -y zip | |
zip tgState_arm64.zip tgState | |
- name: Delete tgState arm64 | |
run: | | |
rm tgState | |
- name: Build Linux amd64 | |
run: | | |
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o tgState main.go | |
- name: Zip Linux amd64 | |
run: | | |
sudo apt-get install -y zip | |
zip tgState.zip tgState | |
- name: Upload server asset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: ./tgState.zip | |
asset_name: tgState.zip | |
asset_content_type: application/zip | |
- name: Upload server asset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: ./tgState_arm64.zip | |
asset_name: tgState_arm64.zip | |
asset_content_type: application/zip | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Log in to Docker Hub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
push: true | |
tags: csznet/tgstate:latest |