mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-12 02:56:56 +08:00
30 lines
441 B
YAML
30 lines
441 B
YAML
name: 'tip'
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
- '!tip'
|
|
branches:
|
|
- '*'
|
|
pull_request:
|
|
|
|
env:
|
|
CI: true
|
|
|
|
jobs:
|
|
|
|
tip:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Build
|
|
run: |
|
|
echo "Build some tool and generate some artifacts" > artifact.txt
|
|
- uses: ./
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
files: |
|
|
artifact.txt
|
|
README.md
|