Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update .ml to .dev #26

Merged
merged 1 commit into from
Dec 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- run: make build
- run: make tarball
- run: |-
find _site -type f -printf 'https://tools.ashenm.ml/%P\n' | \
find _site -type f -printf 'https://tools.ashenm.dev/%P\n' | \
jq --raw-input --slurp 'split("\n") | { files: .[:-1] }' | tee artifacts.list
- uses: actions/upload-artifact@v2
with:
Expand All @@ -46,9 +46,9 @@ jobs:
git checkout --orphan gh-pages
git config user.email "[email protected]"
git config user.name "Ashen Gunaratne"
echo "tools.ashenm.ml" | tee CNAME
echo "tools.ashenm.dev" | tee CNAME
git add --all .
git commit --quiet --message "Deploy tools.ashenm.ml to github.com/${GITHUB_REPOSITORY}.git:gh-pages"
git commit --quiet --message "Deploy tools.ashenm.dev to github.com/${GITHUB_REPOSITORY}.git:gh-pages"
git push --force --quiet "https://${{ secrets.OCTOCAT_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git" "gh-pages:gh-pages"
git show --stat-count=10 HEAD
working-directory: /tmp/build
Expand Down
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ url: "https://ashenm.github.io/tools"
lang: "en"
title: "Demonstration Tools"
author: "Ashen Gunaratne"
email: "mail@ashenm.ml"
email: "mail@ashenm.dev"
keywords: "ashen, gunaratne, ashen m. gunaratne, educational, tools, materials"
desc: "A collection of miscellanies instructional tools and materials"

Expand Down
2 changes: 1 addition & 1 deletion scripts/icons.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Generates favicon.ico from favicon.svg
#
# Ashen Gunaratne
# mail@ashenm.ml
# mail@ashenm.dev
#

from glob import iglob
Expand Down
4 changes: 2 additions & 2 deletions src/encoders/uri.html
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,10 @@
autofocus="autofocus"
inputmode="url"
spellcheck="false"
value="https://terse.ashenm.ml/example"
value="https://terse.ashenm.dev/example"
/>
</form>
<output>https://terse.ashenm.ml/example</output>
<output>https://terse.ashenm.dev/example</output>
</main>
<footer>
</footer>
Expand Down
Loading