mirror of
https://github.com/moparisthebest/arch-ppa
synced 2024-11-16 22:05:04 -05:00
12 lines
324 B
YAML
12 lines
324 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
machine: true
|
|
steps:
|
|
- checkout
|
|
# build the application image
|
|
- run: docker build -t moparisthebest/aur:circle-ci .
|
|
- run: |
|
|
|
|
echo "$DOCKER_PASS" | docker login --username $DOCKER_USER --password-stdin
|
|
|
|
docker push moparisthebest/aur:circle-ci
|