Skip to content

Commit

Permalink
Consolidate Github Actions workflows. (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit91 authored Mar 8, 2023
1 parent c026110 commit f5082bd
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 91 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
name: Build Action
on:
pull_request:
branches:
- master
release:
types:
- published
push:
branches:
- master

jobs:
build:
name: Build
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Ensure Go Version
uses: actions/setup-go@v3
with:
go-version: '1.20'

- name: Lint
uses: golangci/golangci-lint-action@v3
with:
args: --build-tags integration -p bugs -p unused --timeout=3m

- name: Make tag
run: |
[ "${GITHUB_EVENT_NAME}" == 'pull_request' ] && echo "GITHUB_TAG_NAME=$(echo $GITHUB_REF | awk -F / '{print $3}')-${GITHUB_HEAD_REF##*/}" >> $GITHUB_ENV || true
[ "${GITHUB_EVENT_NAME}" == 'release' ] && echo "GITHUB_TAG_NAME=${GITHUB_REF##*/}" >> $GITHUB_ENV || true
[ "${GITHUB_EVENT_NAME}" == 'push' ] && echo "GITHUB_TAG_NAME=latest" >> $GITHUB_ENV || true
- name: Build project
run: |
make
- name: Upload Release Asset
uses: softprops/action-gh-release@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
files: |
bin/nftables-exporter*
if: ${{ github.event_name == 'release' }}
31 changes: 0 additions & 31 deletions .github/workflows/master.yml

This file was deleted.

27 changes: 0 additions & 27 deletions .github/workflows/pr.yml

This file was deleted.

15 changes: 15 additions & 0 deletions .github/workflows/release-drafter.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
name: Release Drafter Action

on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33 changes: 0 additions & 33 deletions .github/workflows/release.yml

This file was deleted.

0 comments on commit f5082bd

Please sign in to comment.