Skip to content

Commit

Permalink
Merge pull request #58 from pehlicd/fix-release-workflow-swc-error
Browse files Browse the repository at this point in the history
fix: release workflow swc error
  • Loading branch information
pehlicd authored Nov 29, 2024
2 parents 3f22252 + 9af48bd commit 2aacf57
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64,linux/arm
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.rbac-wizard.outputs.tags }}
labels: ${{ steps.rbac-wizard.outputs.labels }}
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/pehlicd/rbac-wizard

go 1.23
go 1.23.3

require (
github.com/rakyll/statik v0.1.7
Expand Down
2 changes: 1 addition & 1 deletion internal/statik/statik.go

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rbac-wizard",
"version": "0.0.5",
"version": "0.0.6",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -12,6 +12,7 @@
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@monaco-editor/react": "^4.6.0",
"@next/swc-linux-arm-gnueabihf": "^13.2.4",
"@nextui-org/button": "^2.0.38",
"@nextui-org/code": "^2.0.33",
"@nextui-org/input": "^2.2.5",
Expand Down Expand Up @@ -52,4 +53,4 @@
"devDependencies": {
"@types/d3": "^7.4.3"
}
}
}
4 changes: 2 additions & 2 deletions ui/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {nextui} from '@nextui-org/theme'
import { nextui } from '@nextui-org/theme'
import { Config } from 'tailwindcss'

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./components/**/*.{js,ts,jsx,tsx,mdx}',
Expand Down

0 comments on commit 2aacf57

Please sign in to comment.