This repository has been archived by the owner on Nov 22, 2023. It is now read-only.
Merge pull request #41 from OwO-Network/dependabot/go_modules/github.… #300
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
on: | |
push: | |
pull_request: | |
name: Test & Build Release | |
jobs: | |
Test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "1.18" | |
- name: Test | |
run: sudo go test -v -coverprofile='coverage.out' -covermode=count ./... | |
Build: | |
needs: test | |
if: startsWith(github.ref, 'refs/tags/v') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "1.18" | |
- run: bash .cross_compile.sh | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: # 将下述可执行文件 release 上去 | |
draft: false # Release草稿 | |
files: | | |
dist/* | |
env: | |
GITHUB_TOKEN: ${{ secrets.GT_Token }} | |
publish-new-formula: | |
needs: Build | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Runs a single command using the runners shell | |
- name: config git | |
run: | | |
git config --global user.email "${{ secrets.git_mail }}" | |
git config --global user.name "${{ secrets.git_name }}" | |
- name: Clone repo | |
run: | | |
git clone https://github.com/OwO-Network/homebrew-nexttrace-enhanced.git | |
- name: Exec scipt | |
run: | | |
cd homebrew-nexttrace-enhanced | |
bash genFormula.sh | |
# - name: setup SSH keys and known_hosts | |
# run: | | |
# mkdir -p ~/.ssh | |
# ssh-keyscan github.com >> ~/.ssh/known_hosts | |
# ssh-agent -a $SSH_AUTH_SOCK > /dev/null | |
# ssh-add - <<< "${{ secrets.ID_RSA }}" | |
# env: | |
# SSH_AUTH_SOCK: /tmp/ssh_agent.sock | |
- name: Git Push | |
run: | | |
cd homebrew-nexttrace-enhanced | |
git commit -am 'autoPublishNewFormulaBot' || true | |
git remote set-url origin https://${{ secrets.git_accessToken }}@github.com/OwO-Network/homebrew-nexttrace-enhanced.git | |
git push | |
# env: | |
# SSH_AUTH_SOCK: /tmp/ssh_agent.sock | |
- run: echo "🍏 This job's status is ${{ job.status }}." |