Skip to content

Commit

Permalink
✨ create artifact-upload.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
YousefEZ authored Mar 9, 2024
1 parent 74045d6 commit 90f0fac
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/artifact-upload.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: create-artifact

on:
push:
branches:
- "main"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and export
uses: docker/build-push-action@v5
with:
context: .
tags: congestionfrr:latest
outputs: type=docker,dest=/tmp/congestionfrr.tar
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: congestionfrr
path: /tmp/congestionfrr.tar

0 comments on commit 90f0fac

Please sign in to comment.