Skip to content

Commit

Permalink
Added phone number as link and updated actions
Browse files Browse the repository at this point in the history
  • Loading branch information
metamemelord committed Nov 9, 2022
1 parent 614d61b commit a338d26
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Docker
name: Build and publish

env:
REGISTRY: ghcr.io
Expand All @@ -19,7 +19,7 @@ jobs:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
# Azure SDK takes forever (~10 mins) to build, saving some build time till it's faster
# - name: Install Go - This is just for failing fast
# uses: actions/setup-go@v2
Expand All @@ -32,7 +32,7 @@ jobs:
# - name: Build the server
# run: go build server.go
- name: Install Node - This is just for failing fast
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 16
- name: Build the UI
Expand All @@ -42,23 +42,23 @@ jobs:
npm install
npm run build
- name: Log in to Docker Hub
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_PAT }}
- name: Log in to the GHCR
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GH_PACKAGE_PAT }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push container image
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
uses: docker/build-push-action@v3
with:
context: .
push: true
Expand Down
2 changes: 1 addition & 1 deletion public/index.html

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions src/components/Home components/Intro.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@
<p>I learn things by doing.</p>
<div class="main__intro-information">
<span>
<i class="fa fa-mobile"></i>
<span>(778) 858-3884</span>
<a href="tel:+17788583884" style="color:inherit;text-decoration:none;">
<i class="fa fa-mobile"></i>
<span>(778) 858-3884</span>
</a>
</span>
<span>
<i class="fa fa-location-arrow"></i>
Expand Down

0 comments on commit a338d26

Please sign in to comment.