Skip to content

Commit

Permalink
ci: replace npm with bun in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Spikeysanju committed Oct 31, 2024
1 parent fd17647 commit c846c29
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: CI/CD

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
outputs:
new-release-published: ${{ steps.release.outputs.new-release-published }}
new-release-version: ${{ steps.release.outputs.new-release-version }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: oven-sh/setup-bun@v1
with:
bun-version: latest

- name: Install dependencies
run: bun install

- name: Run semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
id: release
run: bunx semantic-release

build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
needs: release
if: needs.release.outputs.new-release-published == 'true'
steps:
- uses: actions/checkout@v4

- uses: docker/setup-buildx-action@v3

- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: |
ghcr.io/${{ github.repository }}:latest
ghcr.io/${{ github.repository }}:${{ needs.release.outputs.new-release-version }}
build-args: |
VERSION=${{ needs.release.outputs.new-release-version }}
cache-from: type=gha
cache-to: type=gha,mode=max

0 comments on commit c846c29

Please sign in to comment.