-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (37 loc) · 1014 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Build and push Docker image
on:
push:
paths:
- ci/*
- .github/workflows/*
pull_request:
jobs:
build-and-push-docker:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v2
- name: "Set Job Environment Variables"
run: |
SHA7="${GITHUB_SHA::7}"
DOCKER_TAG=$SHA7
echo $DOCKER_TAG > docker-tag.txt
echo "DOCKER_TAG=${DOCKER_TAG}" >> $GITHUB_ENV
- name: Upload docker tag
uses: actions/upload-artifact@v3
with:
name: docker-tag
path: docker-tag.txt
- name: "Build and Publish to DockerHub"
uses: elgohr/[email protected]
with:
name: openscapes/rocker
username: openscapes
password: ${{ secrets.DOCKERHUB_TOKEN }}
workdir: ci
tags: "main, ${{env.DOCKER_TAG}}"
- name: Export Full Conda Environment
run: |
docker run openscapes/rocker:main conda list --export