Skip to content

Commit

Permalink
build deb file
Browse files Browse the repository at this point in the history
  • Loading branch information
dtandersen committed Jul 2, 2024
1 parent 76b61e7 commit b91f20b
Showing 1 changed file with 2 additions and 44 deletions.
46 changes: 2 additions & 44 deletions .github/workflows/build-deb.yml
Original file line number Diff line number Diff line change
@@ -1,56 +1,14 @@
name: release
on:
push:
tags:
- "v*.*.*"
# tags:
# - "v*.*.*"

permissions:
contents: write
packages: write

env:
DSMLP_STORAGE_CONTROLLER_CA: ${{ secrets.DSMLP_STORAGE_CONTROLLER_CA }}
DSMLP_STORAGE_CONTROLLER_CERT: ${{ secrets.DSMLP_STORAGE_CONTROLLER_CERT}}
DSMLP_STORAGE_CONTROLLER_KEY: ${{ secrets.DSMLP_STORAGE_CONTROLLER_KEY }}
DSMLP_STORAGE_CONTROLLER_PORT: ${{ secrets.DSMLP_STORAGE_CONTROLLER_PORT }}
DSMLP_STORAGE_CONTROLLER_DNS: ${{ secrets.DSMLP_STORAGE_CONTROLLER_DNS }}
DSMLP_STORAGE_CONTROLLER_OPTS: ${{ secrets.DSMLP_STORAGE_CONTROLLER_OPTS }}
DSMLP_STORAGE_CONTROLLER_CLIENT_CERT: ${{ secrets.DSMLP_STORAGE_CONTROLLER_CLIENT_CERT }}
DSMLP_STORAGE_CONTROLLER_CLIENT_KEY: ${{ secrets.DSMLP_STORAGE_CONTROLLER_CLIENT_KEY }}

jobs:
create-release:
name: Create Release
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v') && github.ref_type == 'tag'
steps:
- name: Run action for creating release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ github.ref_name }}
generate_release_notes: true
token: ${{ secrets.GITHUB_TOKEN }}

go-server-release:
name: Create Go server release
needs: [create-release]
runs-on: ubuntu-latest
steps:
- name: Checkout actions
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Run Go Release Action
uses: wangyoucao577/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
release_tag: ${{ github.ref_name }}
goos: linux
goarch: amd64
project_path: ./cmd/server
pre_command: go env -w GO111MODULE=auto

rpm-release:
name: Create RPM release
needs: [create-release]
Expand Down

0 comments on commit b91f20b

Please sign in to comment.