Skip to content
This repository has been archived by the owner on Feb 17, 2024. It is now read-only.

Increment version to 0.15.0 #113

Increment version to 0.15.0

Increment version to 0.15.0 #113

Workflow file for this run

---
name: CI
on: [ workflow_dispatch, push, pull_request ]
jobs:
omnilint:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: docker://lpenz/omnilint:0.5.1
docker-build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
repository: lpenz/ogle
- uses: actions/[email protected]
with:
path: ./ghaction-rust-coverage
- run: docker pull rust:slim
- uses: ./ghaction-rust-coverage
- run: grep '^SF:' lcov.info
test:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
path: ghaction-rust-coverage
- uses: actions/[email protected]
with:
repository: lpenz/ogle
path: ogle
fetch-depth: 0
- uses: ./ghaction-rust-coverage
with:
working_directory: ogle
publish-dockerhub:
needs: [ omnilint, docker-build ]
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- id: version
uses: docker://lpenz/ghaction-version-gen:0.13.2
- uses: docker/[email protected]
- uses: docker/[email protected]
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
if: ${{ steps.version.outputs.version_docker_ci != 'null' }}
- uses: docker/[email protected]
with:
push: ${{ steps.version.outputs.version_docker_ci != 'null' }}
tags: ${{ github.repository }}:${{ steps.version.outputs.version_docker_ci }}
publish-github-release:
needs: [ publish-dockerhub ]
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- id: version
uses: docker://lpenz/ghaction-version-gen:0.13.2
- name: publish github release
uses: "marvinpinto/[email protected]"
if: steps.version.outputs.version_tagged != ''
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
prerelease: false