From 4142a9857298b394a95bd5aa431163b5fe8982f5 Mon Sep 17 00:00:00 2001 From: Ayman Bagabas Date: Wed, 3 Aug 2022 15:37:48 -0400 Subject: [PATCH] fix(ci): remove manpages workflow this is replaced by `soft man` --- .github/workflows/manpage.yml | 41 ----------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 .github/workflows/manpage.yml diff --git a/.github/workflows/manpage.yml b/.github/workflows/manpage.yml deleted file mode 100644 index 26b19caac5804b60686c3c170dc433b258a172e6..0000000000000000000000000000000000000000 --- a/.github/workflows/manpage.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: manpage - -on: - push: - branches: - - manpage - -jobs: - manpage: - runs-on: ubuntu-latest - steps: - - name: Install Go - uses: actions/setup-go@v2 - with: - go-version: 1.17 - - - name: Checkout code - uses: actions/checkout@v2 - - - name: Download Go modules - run: go mod download - - - name: Build - run: | - cd cmd/soft - go build -v -tags mango - - - name: Generate man-page - run: | - ./cmd/soft/soft > ./cmd/soft/soft.1 - - - name: Commit - uses: stefanzweifel/git-auto-commit-action@v4 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - commit_message: "docs: update man page" - branch: manpage - commit_user_name: mango 🤖 - commit_user_email: actions@github.com - commit_author: mango 🤖