Update workflows to explicitly use ubuntu-22.04 instead of ubuntu-lat… #385
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: Create GitHub & Artifactory Release | |
on: | |
push: | |
branches: | |
- 'master' | |
paths-ignore: | |
- 'docs/**' | |
- '**.md' | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
# Needed to get all tags | |
fetch-depth: 0 | |
- name: Install lib | |
run: sudo apt-get install libncurses5 | |
- name: Release | |
uses: ./.github/actions/release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
ARTIFACTORY_USER: ${{ secrets.ARTIFACTORY_USER }} | |
ARTIFACTORY_KEY: ${{ secrets.ARTIFACTORY_KEY }} |