Skip to content

Commit

Permalink
Don't use BINARY_NAME
Browse files Browse the repository at this point in the history
  • Loading branch information
JAORMX committed Nov 21, 2023
1 parent a801f76 commit 5ea9820
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ on:
branches:
- main

env:
BINARY_NAME: frizbee

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -34,7 +31,7 @@ jobs:
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
with:
name: frizbee
path: bin/{{ env.BINARY_NAME }}
path: bin/frizbee

lint:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -85,10 +82,10 @@ jobs:
name: frizbee
path: bin/

- name: Make ${{ env.BINARY_NAME }} executable
- name: Make frizbee executable
run: |-
chmod +x bin/${{ env.BINARY_NAME }}
chmod +x bin/frizbee
- name: Bommerang
- name: Frizbee
run: |-
bin/${{ env.BINARY_NAME }} ghactions --dry-run --error
bin/frizbee ghactions --dry-run --error

0 comments on commit 5ea9820

Please sign in to comment.