Skip to content

Commit

Permalink
Merge branch 'main' into add-transparent-logo-files
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesbayley authored Feb 14, 2024
2 parents e26ffc3 + 247f34c commit 31f3ece
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 168 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM mcr.microsoft.com/devcontainers/go:1.21-bullseye
FROM mcr.microsoft.com/devcontainers/go:1.22-bookworm
16 changes: 11 additions & 5 deletions .github/workflows/build.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
name: Build
name: CI

on:
push:
branches: main
branches:
- '*'
- '!main'

defaults:
run:
shell: pwsh

jobs:
setup:
name: CI
build:
name: Build
runs-on: Ubuntu-Latest

steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand Down
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@
"editor.rulers": [80]
},

"powershell.powerShellDefaultVersion": "7",
"powershell.powerShellAdditionalExePaths": {
"pwsh": "/usr/local/bin/pwsh"
},

"liveServer.settings.root": "/docs",
"liveServer.settings.file": "index.html",
"liveServer.settings.host": "localhost",
Expand Down
1 change: 0 additions & 1 deletion docs/CNAME

This file was deleted.

1 change: 0 additions & 1 deletion docs/assets/github-mark.svg

This file was deleted.

Binary file removed docs/favicon.png
Binary file not shown.
100 changes: 0 additions & 100 deletions docs/global.css

This file was deleted.

32 changes: 0 additions & 32 deletions docs/guides/Concrete.md

This file was deleted.

24 changes: 0 additions & 24 deletions docs/index.html

This file was deleted.

4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/calcpadstudio/gazelle
module github.com/GazelleKit/gazelle

go 1.21.1
go 1.22.0
2 changes: 1 addition & 1 deletion pkg/bluebook/universalsection.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package bluebook

import (
units "github.com/calcpadstudio/gazelle/pkg/units"
units "github.com/GazelleKit/gazelle/pkg/units"
)

type DimensionsAndProperties struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/steel/sections.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package steel

import (
bluebook "github.com/calcpadstudio/gazelle/pkg/bluebook"
bluebook "github.com/GazelleKit/gazelle/pkg/bluebook"
)

type UniversalBeam struct {
Expand Down

0 comments on commit 31f3ece

Please sign in to comment.