release #78
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: release | |
on: | |
create: | |
tags: | |
- '**' | |
env: | |
DOCKER_REPO: litmuschaos | |
DOCKER_IMAGE: ansible-runner | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
release-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set Tag | |
run: | | |
TAG="${GITHUB_REF#refs/*/}" | |
echo "TAG=${TAG}" >> $GITHUB_ENV | |
echo "RELEASE_TAG=${TAG}" >> $GITHUB_ENV | |
- name: Print Tag info | |
run: | | |
echo "RELEASE TAG: ${RELEASE_TAG}" | |
echo "${RELEASE_TAG}" > ${{ github.workspace }}/tag.txt | |
- name: Build Image | |
env: | |
DOCKER_TAG: ${RELEASE_TAG} | |
SAVE_PATH: ${{ github.workspace }} | |
run: | | |
make build | |
make save | |
chmod +x ${{ github.workspace }}/image.tar | |
- name: Upload artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: myimage | |
path: | | |
${{ github.workspace }}/image.tar | |
${{ github.workspace }}/tag.txt | |
release-push: | |
runs-on: ubuntu-latest | |
needs: [release-build] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Download artifact | |
uses: actions/download-artifact@v2 | |
with: | |
name: myimage | |
path: ${{ github.workspace }} | |
- name: Load Docker image | |
run: | | |
docker load --input ${{ github.workspace }}/image.tar | |
RELEASE_TAG=`cat ${{ github.workspace }}/tag.txt` | |
echo "RELEASE_TAG=${RELEASE_TAG}" >> $GITHUB_ENV | |
- name: Push Image | |
env: | |
DOCKER_TAG: ${RELEASE_TAG} | |
DNAME: ${{ secrets.DNAME }} | |
DPASS: ${{ secrets.DPASS }} | |
run: | | |
make push |