Skip to content

Commit

Permalink
Fix display site on safari, try other release CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mamcx committed Aug 30, 2020
1 parent da75f38 commit 744c6e6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,12 @@ jobs:
with:
command: build
args: --release --all --locked
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
- run: mv target/release/${{ matrix.artifact_name }} target/release/${{ matrix.asset_name }}
- uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/release/${{ matrix.artifact_name }}
asset_name: ${{ matrix.asset_name }}
tag: "latest"
overwrite: true
automatic_release_tag: "latest"
prerelease: true
title: "TablaM Binaries"
files: |
target/release/${{ matrix.asset_name }}
2 changes: 1 addition & 1 deletion docs/content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ So, what *kind* of language is **TablaM**?

- Built-in support for a variety of protocols, formats and data transformation **(tbd)**.

- No needs ORMs. Talk directly to major RDBMS/SQL databases (PostgreSQL, MySql, SQL Server, SQLite) **(tbd)**.
- No needs for ORMs. Talk directly to major RDBMS/SQL databases (PostgreSQL, MySql, SQL Server, SQLite) **(tbd)**.



Expand Down
2 changes: 1 addition & 1 deletion docs/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<div class="mx-auto px-6 py-3 md:flex">
<div class="flex justify-between items-center">
<div>
<a href="/" class="flex">
<a href="/" class="flex items-center">
<img class="inline" src="/img/icon.svg" width="32px" height="32px" alt="TablaM icon" /><span class="pl-2">TablaM</span>
</a>
</div>
Expand Down

0 comments on commit 744c6e6

Please sign in to comment.