File tree Expand file tree Collapse file tree 4 files changed +55
-0
lines changed Expand file tree Collapse file tree 4 files changed +55
-0
lines changed Original file line number Diff line number Diff line change 1+ * @ rhythmictech/engineering
Original file line number Diff line number Diff line change 1+ ---
2+
3+ name : Publish Docker image to Github Packages
4+
5+ on :
6+ release :
7+ types : [published]
8+
9+ jobs :
10+ push_to_registry :
11+ name : Push Docker image to GitHub Packages
12+ runs-on : ubuntu-latest
13+ steps :
14+
15+ - name : Check out the repo
16+ uses : actions/checkout@v2
17+
18+ - name : Push to GitHub Packages
19+ uses : docker/build-push-action@v1
20+ with :
21+ username : ${{ github.actor }}
22+ password : ${{ secrets.GITHUB_TOKEN }}
23+ registry : docker.pkg.github.com
24+ repository : rhythmictech/docker-graylog-integrations-plugin/graylog-integrations-plugin
25+ tag_with_ref : true
Original file line number Diff line number Diff line change 1+ # #######################################
2+ # pre-commit is a python-based githook manager
3+ # see pre-commit.com
4+ # #######################################
5+ ---
6+ repos :
7+
8+ # #######################################
9+ # generic
10+ # #######################################
11+
12+ - repo : https://github.com/pre-commit/pre-commit-hooks
13+ rev : v3.4.0
14+ hooks :
15+ - id : end-of-file-fixer # add newlines
16+ - id : trailing-whitespace # get rid of trailing whitespace
17+ - id : no-commit-to-branch # don't commit to master
18+ - id : check-added-large-files # no files over x kb
19+ - id : check-symlinks # no pointless symlinks
20+
21+ # #######################################
22+ # Docker
23+ # #######################################
24+
25+ - repo : https://github.com/jas-on/pre-commit-hadolint
26+ rev : 1.0.1
27+ hooks :
28+ - id : hadolint
Original file line number Diff line number Diff line change 1+ FROM graylog/graylog:4.0.2
You can’t perform that action at this time.
0 commit comments