Skip to content

Commit

Permalink
v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nalbam committed Oct 2, 2019
1 parent c4e7353 commit 9ea3c78
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 3 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build-Push

on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v1
with:
fetch-depth: 1

- name: Docker Push
uses: opspresso/action-builder@master
with:
args: --docker
env:
USERNAME: ${{ secrets.DOCKER_USERNAME }}
PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM opspresso/awscli:1.16.245
FROM opspresso/builder:alpine

LABEL "com.github.actions.name"="Version Bump"
LABEL "com.github.actions.description"="Increase the patch version."
LABEL "com.github.actions.icon"="tag"
LABEL "com.github.actions.color"="blue"

LABEL version=v0.1.1
LABEL version=v0.2.1
LABEL repository="https://github.com/opspresso/action-version"
LABEL maintainer="Jungyoul Yu <[email protected]>"
LABEL homepage="https://opspresso.com/"
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.1.1
v0.2.1
11 changes: 11 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: 'Version Bump'
description: 'Increase the patch version.'
author: 'Jungyoul Yu <@nalbam>'

branding:
icon: 'tag'
color: 'blue'

runs:
using: 'docker'
image: 'Dockerfile'

0 comments on commit 9ea3c78

Please sign in to comment.