Skip to content

Commit

Permalink
Merge pull request #177 from data-to-insight/feat/publish903-v0.1.1
Browse files Browse the repository at this point in the history
feat(wheel, app, index): move 903 wheel to v0.1.1
  • Loading branch information
tab1tha authored Dec 4, 2023
2 parents 239d235 + d552cf0 commit 895a070
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
folder: build # The folder the action should deploy.

- name: Modify for 903
run: node scripts/productionise-html.js --wheelPath /bin/dist/csc_validator_be_903-0.1.0-py3-none-any.whl --tool Tool903
run: node scripts/productionise-html.js --wheelPath /bin/dist/csc_validator_be_903-0.1.1-py3-none-any.whl --tool Tool903

- name: Pushes files to 903/LAC repo
if: github.ref == 'refs/heads/main'
Expand Down
Binary file not shown.
4 changes: 2 additions & 2 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
<div
id="root"
data-wheelPath="/bin/dist/csc_validator_be_cin-0.1.3-py3-none-any.whl"
data-tool="ToolCIN"
data-tool="ToolCIN"
></div>
</body>
</html>

<!-- data-wheelPath="/bin/dist/csc_validator_be_903-0.1.0-py3-none-any.whl"
<!-- data-wheelPath="/bin/dist/csc_validator_be_903-0.1.1-py3-none-any.whl"
data-tool="Tool903" -->
<!-- data-wheelPath="/bin/dist/csc_validator_be_cin-0.1.3-py3-none-any.whl"
data-tool="ToolCIN" -->
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ function App(props: AppProps) {
sourceLink='https://github.com/data-to-insight/cin-validator-fe'
/>
<Version versionNumber='0.1.3' sourceLink='https://github.com/data-to-insight/csc-validator-be-cin'/>
<Version versionNumber='0.1.0' sourceLink='https://github.com/data-to-insight/csc-validator-be-903'/>
<Version versionNumber='0.1.1' sourceLink='https://github.com/data-to-insight/csc-validator-be-903'/>
</>
) : (
<Loader type='cover' label='Loading Python API' />
Expand Down
2 changes: 1 addition & 1 deletion src/Landing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const Landing = (props: LandingProps) => {
sourceLink='https://github.com/data-to-insight/cin-validator-fe'
/>
<Version versionNumber='0.1.3' sourceLink='https://github.com/data-to-insight/csc-validator-be-cin'/>
<Version versionNumber='0.1.0' sourceLink='https://github.com/data-to-insight/csc-validator-be-903'/>
<Version versionNumber='0.1.1' sourceLink='https://github.com/data-to-insight/csc-validator-be-903'/>
</Container>
</ThemeProvider>
);
Expand Down
2 changes: 1 addition & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const rootEl = document.getElementById('root') as HTMLElement;
const tool = rootEl.getAttribute('data-tool') || Tool.Tool903;
const wheelPath =
rootEl.getAttribute('data-wheelpath') ||
'/bin/dist/csc_validator_be_903-0.1.0-py3-none-any.whl';
'/bin/dist/csc_validator_be_903-0.1.1-py3-none-any.whl';

const Core = () => {
const CookieGate = withCookieGate({
Expand Down

0 comments on commit 895a070

Please sign in to comment.