go-tools/.gitea/workflows/deploy.yml

49 lines
1.1 KiB
YAML
Raw Normal View History

2023-09-30 16:19:41 -06:00
name: Deploy
on:
2023-10-01 16:56:28 -06:00
push:
branches: [ "main" ]
2023-09-30 16:19:41 -06:00
release:
2023-09-30 16:19:41 -06:00
types: [ published ]
2023-09-30 16:19:41 -06:00
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2023-09-30 19:57:17 -06:00
with:
2023-09-30 19:57:17 -06:00
fetch-depth: 0
2023-09-30 19:57:17 -06:00
fetch-tags: true
2023-09-30 16:19:41 -06:00
- run: apt-get update && apt-get -y install ansible
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21.1
- name: Build
run: go build -ldflags "-s -w" -o ./build/ev ./cmd/ev
- name: Compress
uses: https://git.sour.is/actions/ghaction-upx@v2.4.0
with:
version: latest
files: |
./build/ev
args: -fq
- name: Deploy
uses: https://git.sour.is/actions/action-ansible-playbook@v2
with:
playbook: ${{ gitea.workspace }}/.ansible/playbook.yml
key: ${{secrets.deploy_ssh}}
options: |
--inventory .ansible/inventory
--become
--become-method sudo
--user deploy
--ssh-extra-args="-p 65535"
- run: echo "🍏 This job's status is ${{ job.status }}."