Skip to content

Commit

Permalink
feat(ci): add ci workflow and adopt .gitignore
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Haar <[email protected]>
  • Loading branch information
haarchri committed Nov 4, 2024
1 parent e41c0bf commit 4d4b6c7
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build and Deploy

on:
push:
branches:
- main
pull_request:

env:
UP_TOKEN: ${{ secrets.UP_TOKEN }}

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Run Up CLI Build and Push
if: env.UP_TOKEN != ''
uses: upbound/up-project-action@v1
with:
up_token: ${{ secrets.UP_TOKEN }}
endpoint: https://private-cli.upbound.io
channel: main
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
_output
.venv
.up

0 comments on commit 4d4b6c7

Please sign in to comment.