mirror of
https://github.com/taigrr/github2mr.git
synced 2026-04-02 11:19:15 -07:00
This is the initial release which is fully-functional and works for myself, self-hosted github enterprise installations, and privately hosted gitbucket installs. It has not been tested against other systems (gogs, gitea, etc), but reports of success/failure or patches would be most welcome.
20 lines
462 B
YAML
20 lines
462 B
YAML
on:
|
|
release:
|
|
types: [created]
|
|
name: Handle Release
|
|
jobs:
|
|
upload:
|
|
name: Upload
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout the repository
|
|
uses: actions/checkout@master
|
|
- name: Generate the artifacts
|
|
uses: skx/github-action-build@master
|
|
- name: Upload the artifacts
|
|
uses: skx/github-action-publish-binaries@master
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
args: bin/*-*
|