Skip to content

Bump dario.cat/mergo from 1.0.0 to 1.0.1 (#470) #159

Bump dario.cat/mergo from 1.0.0 to 1.0.1 (#470)

Bump dario.cat/mergo from 1.0.0 to 1.0.1 (#470) #159

Workflow file for this run

name: Create Dev Release
# Delete the previous development release and recreate it
# with code based off of the main branch. The DEV_RELEASE
# tag is updated as part of the "main.yaml" workfmow.
#
# This is done so that the openshift-tools-installer has a valid
# semantic version release to install.
# https://github.com/redhat-actions/openshift-tools-installer
on:
push:
branches:
- main
env:
DEV_RELEASE: 0.1.0
jobs:
release:
name: Create Dev Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Set up Python 3.x
uses: ./.github/actions/setup-python
- name: Set up Python scripts
run: |
# set up python requirements and scripts on PR branch
python3 -m venv ve1
cd scripts && ../ve1/bin/pip3 install -r requirements.txt && cd ..
cd scripts && ../ve1/bin/pip3 install . && cd ..
- name: Build Binary
id: build-binary
run: make bin
- name: Create tarfile
if: ${{ steps.build-binary.outcome == 'success' }}
id: create-tarfile
run: |
# check if release file only is included in PR
ve1/bin/tar-file --release=${DEV_RELEASE}
- name: Delete previous release and tag
id: delete-previous
if: ${{ steps.create-tarfile.outcome == 'success' }}
uses: dev-drprasad/[email protected]
with:
delete_release: true # default: false
tag_name: ${{ env.DEV_RELEASE }} # tag name to delete
github_token: ${{ secrets.GITHUB_TOKEN }}
# The next step seems to periodically create a draft release.
# We think this is because of a race condition.
# Force a wait after the previous release was deleted.
- name: Sleep and to buffer release recreation
id: sleep-after-delete-previous
run: sleep 8
- name: Create the release
id: create_release
if: ${{ steps.delete-previous.outcome == 'success' && steps.sleep-after-delete-previous.outcome == 'success' }}
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ env.DEV_RELEASE }}
body: "Development release created with each merge into the main branch."
files: ${{ steps.create-tarfile.outputs.tarball_full_name }}
prerelease: true
draft: false
token: ${{ secrets.GITHUB_TOKEN }}