14 lines
187 B
YAML
14 lines
187 B
YAML
|
name: Build docker image
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
tags:
|
||
|
- '*'
|
||
|
|
||
|
jobs:
|
||
|
publish_npm_packages:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Hello world
|
||
|
run: echo 'hello world'
|