release-github-action.yml 551 B

1234567891011121314151617181920212223242526272829
  1. name: release-github-action
  2. on:
  3. push:
  4. branches:
  5. - dev
  6. paths:
  7. - "github/**"
  8. concurrency: ${{ github.workflow }}-${{ github.ref }}
  9. permissions:
  10. contents: write
  11. jobs:
  12. release:
  13. runs-on: blacksmith-4vcpu-ubuntu-2404
  14. steps:
  15. - uses: actions/checkout@v4
  16. with:
  17. fetch-depth: 0
  18. - run: git fetch --force --tags
  19. - name: Release
  20. run: |
  21. git config --global user.email "[email protected]"
  22. git config --global user.name "opencode"
  23. ./github/script/release