Github Hub
ActionsTags
(2)Interacting with Github in an action
name: Publish Release
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Create a Release
uses: elgohr/Github-Hub-Action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: release create $(date +%Y%m%d%H%M%S)
The actions you want to perform on Github.
All commands can be found at https://hub.github.com/hub.1.html
Github Hub is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.