-
Notifications
You must be signed in to change notification settings - Fork 1
31 lines (27 loc) · 877 Bytes
/
blank.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Run a one-line script
run: echo Hello, world!
- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your project.
- uses: jikuma/githubaction@v0.4.0-alpha
with:
operation: 'create a release'
repo-token: ${{ secrets.GITHUB_TOKEN }}
release_title: 'Release from Test'
release_note: 'Release created from commit ${{ github.sha }}'
asset_filepath: './README.md'
tag_name: v0.1.GITHUB_SHORT_SHA
- uses: jikuma/githubaction@v0.4.0-alpha
with:
operation: 'upload an asset to a release'
repo-token: ${{ secrets.GITHUB_TOKEN }}
asset_filepath: './CHANGELOG.md'
tag_name: v0.1.GITHUB_SHORT_SHA