forked from sirius/actions-laba-1
18 lines
326 B
YAML
18 lines
326 B
YAML
name: "My First Action"
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
second-job:
|
|
runs-on: docker
|
|
steps:
|
|
- name: Install task utility
|
|
run: |
|
|
curl -1sLf 'https://dl.cloudsmith.io/public/task/task/setup.deb.sh' | bash
|
|
apt update
|
|
apt install task
|
|
|
|
- name: Run task hello
|
|
run: task hello
|