Skip to content

Commit

Permalink
Merge pull request #85 from uk-x-gov-software-community/fix/fix-relea…
Browse files Browse the repository at this point in the history
…se-conference-image

fix: build conference image
  • Loading branch information
sdh100shaun authored Oct 23, 2024
2 parents a905333 + 1d9d231 commit 08c5916
Show file tree
Hide file tree
Showing 18 changed files with 14 additions and 16 deletions.
11 changes: 7 additions & 4 deletions .eleventy.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,18 @@ module.exports = function(eleventyConfig) {
dynamicPartials: false,
strictFilters: false,
});
eleventyConfig.addPassthroughCopy('assets')
eleventyConfig.addPassthroughCopy('open-source-presentation/*.png')
return {
passthroughFileCopy: true
}
addPassthroughCopy: function (dir) {
eleventyConfig.addPassthroughCopy(dir)
},
};
}


module.exports = function(eleventyConfig) {
eleventyConfig.addPassthroughCopy('assets')
eleventyConfig.addPassthroughCopy('open-source-presentation/*.png')

// Register the plugin
eleventyConfig.addPlugin(govukEleventyPlugin,{
fontFamily: 'arial, sans-serif',
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- name: Build
uses: TartanLlama/actions[email protected]
uses: actions/setup-node@v4
with:
install_dependencies: true
node-version: 18
- run: npm ci
- run: npm run build
- name: Deploy
uses: peaceiris/[email protected]
if: github.ref == 'refs/heads/main'
Expand Down
Binary file removed assets/fonts/bold-affa96571d-v2.woff
Binary file not shown.
Binary file removed assets/fonts/bold-b542beb274-v2.woff2
Binary file not shown.
Binary file removed assets/fonts/light-94a07e06a1-v2.woff2
Binary file not shown.
Binary file removed assets/fonts/light-f591b13f7d-v2.woff
Binary file not shown.
Binary file removed assets/images/favicon.ico
Binary file not shown.
Binary file removed assets/images/govuk-apple-touch-icon-152x152.png
Binary file not shown.
Binary file removed assets/images/govuk-apple-touch-icon-167x167.png
Binary file not shown.
Binary file removed assets/images/govuk-apple-touch-icon-180x180.png
Binary file not shown.
Binary file removed assets/images/govuk-apple-touch-icon.png
Binary file not shown.
Binary file removed assets/images/govuk-crest-2x.png
Binary file not shown.
Binary file removed assets/images/govuk-crest.png
Binary file not shown.
Binary file removed assets/images/govuk-logotype-crown.png
Binary file not shown.
7 changes: 0 additions & 7 deletions assets/images/govuk-mask-icon.svg

This file was deleted.

Binary file removed assets/images/govuk-opengraph-image.png
Binary file not shown.
2 changes: 1 addition & 1 deletion conference-2025-01-29.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page.njk
title: Cross Government Software Engineering Conference 2025
---

![Drawing with stylised people with laptops at a table discussing code](https://raw.githubusercontent.com/uk-x-gov-software-community/uk-x-gov-software-community.github.io/conference.png)
![Drawing with stylised people with laptops at a table discussing code](/assets/images/conference.png)

📣 **Register your interest for the Cross Government Software Engineering Conference 2025**

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "gulp build && eleventy",
"build": "eleventy",
"build:local:docker": "docker build -t uk-xgov-software-community . && docker run -dp 127.0.0.1:8081:8081 uk-xgov-software-community"
},
"repository": {
Expand Down

0 comments on commit 08c5916

Please sign in to comment.