Skip to content

Commit

Permalink
(feat): Update artifact name
Browse files Browse the repository at this point in the history
  • Loading branch information
Lasith Koswatta Gamage committed Oct 31, 2023
1 parent 3387e81 commit cfcc807
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
name: Build 🔨 and Release 🚀
on: [push]

on:
push:
branches:
- '**'
tags-ignore:
- '**'

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
architecture: [amd64]
include:
- architecture: amd64
artifact: ebs-bootstrap-linux-x86_64
name: Build and Test (${{ matrix.architecture }}) 🔨
steps:
- uses: actions/checkout@v4
Expand All @@ -18,8 +26,8 @@ jobs:
run: ./build/docker.sh --architecture ${{ matrix.architecture }}
- uses: actions/upload-artifact@v3
with:
name: ebs-bootstrap-linux-${{ matrix.architecture }}
path: ebs-bootstrap-linux-${{ matrix.architecture }}
name: ${{ matrix.artifact }}
path: ${{ matrix.artifact }}
if-no-files-found: error
retention-days: 1

Expand Down

0 comments on commit cfcc807

Please sign in to comment.