Add .editorconfig and GitHub Actions workflow

This commit is contained in:
Matthew Penner 2020-07-19 11:37:07 -06:00
parent e02ffaa21d
commit b7bf0ae615
2 changed files with 64 additions and 0 deletions

18
.editorconfig Normal file
View file

@ -0,0 +1,18 @@
# editorconfig.org
root = true
[*]
indent_style = space
indent_size = 4
tab_width = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.md]
trim_trailing_whitespace = false
[*.yml]
indent_size = 2
tab_width = 2

46
.github/workflows/docker-publish.yml vendored Normal file
View file

@ -0,0 +1,46 @@
name: Docker
on:
push:
branches:
- master
env:
VERSION: latest
jobs:
push:
name: Push
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- name: Code Checkout
uses: actions/checkout@v2
- name: Registry Authentication
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
- name: Build Alpine Image
run: docker build ./alpine --file Dockerfile --tag alpine
- name: Build Java8 Image
run: docker build ./java8 --file Dockerfile --tag java8
- name: Push Alpine Image
run: |
IMAGE_NAME=alpine
IMAGE_ID=docker.pkg.github.com/${{ github.repository }}/$IMAGE_NAME
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
docker tag $IMAGE_NAME $IMAGE_ID:$VERSION
docker push $IMAGE_ID:$VERSION
- name: Push Java8 Image
run: |
IMAGE_NAME=java8
IMAGE_ID=docker.pkg.github.com/${{ github.repository }}/$IMAGE_NAME
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
docker tag $IMAGE_NAME $IMAGE_ID:$VERSION
docker push $IMAGE_ID:$VERSION