Skip to content

Commit

Permalink
Use repo name as artifact name to be more generic
Browse files Browse the repository at this point in the history
  • Loading branch information
stylesuxx committed May 1, 2022
1 parent 87e8b03 commit b969509
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
release:
name: Release ipk to GitHub Releases
name: Release IPK to GitHub Releases
runs-on: ubuntu-latest
permissions:
contents: write
Expand Down Expand Up @@ -65,14 +65,14 @@ jobs:
- name: Make artifact name
id: make_artifactname
run: |
ARTIFACT_NAME="EXAMPLE-IPK-BUILD-${{ github.run_number }}"
ARTIFACT_NAME="${{ github.repository }}-${{ github.run_number }}"
echo "${ARTIFACT_NAME}"
echo "ARTIFACT_NAME=${ARTIFACT_NAME}" >> $GITHUB_ENV
- name: Build ipk package
- name: Build IPK package
run: make

- name: Upload artifact
- name: Upload artifact containing all IPKs
uses: actions/upload-artifact@v2
with:
name: ${{ env.ARTIFACT_NAME }}
Expand Down

0 comments on commit b969509

Please sign in to comment.