Attache vm to lbu with backend_ips #716
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
# This GitHub action can generate binaries for the PR and upload them for future use | |
name: Generate binaries on PR | |
on: | |
pull_request: | |
branches: | |
- master | |
paths: | |
- '**.go' | |
- '**.sum' | |
- '**.mod' | |
- 'GNUmakefile' | |
workflow_dispatch: | |
jobs: | |
goreleaser: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 'stable' | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
version: latest | |
args: build --rm-dist --snapshot | |
- name: Upload assets | |
uses: actions/upload-artifact@v4 | |
with: | |
name: terraform-provider-outscale | |
path: dist/terraform-provider-outscale* |