Skip to content
This repository was archived by the owner on Sep 12, 2025. It is now read-only.

Commit 46e506f

Browse files
committed
Refactor code to improve performance and readability
1 parent 8911387 commit 46e506f

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Release binaries when tagged
2+
3+
on:
4+
push:
5+
tags:
6+
- '*'
7+
8+
jobs:
9+
build-and-release:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v2
14+
15+
- name: Upload release
16+
uses: softprops/action-gh-release@v1
17+
if: startsWith(github.ref, 'refs/tags/')
18+
with:
19+
files: infrastructure.cfn.yaml
20+

0 commit comments

Comments
 (0)