forked from blasthavers/blastmud
26 lines
540 B
YAML
26 lines
540 B
YAML
|
jobs:
|
||
|
- name: build-blastmud-image
|
||
|
public: true
|
||
|
plan:
|
||
|
- get: blastmud-repo
|
||
|
trigger: true
|
||
|
- task: build
|
||
|
config:
|
||
|
platform: linux
|
||
|
image_resource:
|
||
|
type: registry-image
|
||
|
source:
|
||
|
repository: rust
|
||
|
run:
|
||
|
path: echo
|
||
|
args: ["Hello", "world!"]
|
||
|
resources:
|
||
|
- name: blastmud-repo
|
||
|
type: git
|
||
|
check_every: never
|
||
|
webhook_token: ((webhook_token))
|
||
|
source:
|
||
|
uri: https://git.blastmud.org/blasthavers/blastmud.git
|
||
|
branch: main
|
||
|
|