Skip to content

Commit

Permalink
Merge pull request #12 from fitbeard/add/bump_version
Browse files Browse the repository at this point in the history
bump awxkit version
  • Loading branch information
fitbeard authored Jan 9, 2023
2 parents b8ddfc2 + 96d6b61 commit 6393ec5
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 11 deletions.
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
24 changes: 15 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,32 @@
name: main

on:
push:
tags:
- '*'
release:
types:
- published

jobs:
build:
runs-on:
- ubuntu-latest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/[email protected]

- name: Login to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v2.1.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Generate image tag
id: image_tag
run: |
echo ::set-output name=tag::$(echo ${{ github.event.release.tag_name }} | sed 's/^v//')
- name: Build && Push
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3.2.0
with:
context: .
file: Dockerfile.base
tags: t42x/awxkit_base:${{ github.ref_name }}
tags: t42x/awxkit_base:${{ steps.image_tag.outputs.tag }}
push: true
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM t42x/awxkit_base:v1
FROM t42x/awxkit_base:v21.10.2

ADD entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
awxkit==19.4.0
awxkit==21.10.2

0 comments on commit 6393ec5

Please sign in to comment.