Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: update how we append to PATH in actions #568

Merged
merged 14 commits into from
Oct 18, 2023
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y libstdc++6 liblzma5 libbz2-1.0 bioperl
sudo apt-get install -y libstdc++6 liblzma5 libbz2-1.0 bioperl libncursesw5

- name: Set PATH for binaries
- name: Add binaries to PATH
run: |
echo "$PWD/bin:$PWD/binaries/noarch:$PWD/binaries/linux:$PATH" >> $GITHUB_ENV
echo "$PWD/bin:$PWD/binaries/noarch:$PWD/binaries/linux" >> $GITHUB_PATH

- name: Check binaries
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build Status](https://travis-ci.org/tseemann/snippy.svg?branch=master)](https://travis-ci.org/tseemann/snippy)
[![CI](https://github.com/tseemann/snippy/actions/workflows/main.yml/badge.svg)](https://github.com/tseemann/snippy/actions/workflows/main.yml)
[![License: GPL v2](https://img.shields.io/badge/License-GPL%20v2-blue.svg)](https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html)
![Don't judge me](https://img.shields.io/badge/Language-Perl_5-steelblue.svg)

Expand Down