diff options
| author | mo khan <mo.khan@gmail.com> | 2020-04-06 17:28:25 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-04-06 17:28:25 -0600 |
| commit | 00ee08be6416e1eaa33f62c65e398473f5f34acd (patch) | |
| tree | 671e3d73b1d263233c4b8f73ecafd249e61efbd5 /.github/workflows | |
| parent | 61ff56d391931d3466c60da9183da3ee3ca09772 (diff) | |
export out of git lfs
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/docker.yml | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 89002a8..9572e81 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -1,3 +1,18 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:517c21af8f39b69a3caae4057a243906c033877bc5f76cfe40857be4117ba086 -size 476 +name: docker +on: + push: + branches: + - master +jobs: + push: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + with: + lfs: true + submodules: recursive + - name: push + run: | + docker build -t docker.pkg.github.com/mokhan/spandx/spandx:latest . + docker login docker.pkg.github.com -u mokhan -p ${{ secrets.GITHUB_TOKEN }} + docker push docker.pkg.github.com/mokhan/spandx/spandx:latest |
