Skip to content

Commit a6bf9ed

Browse files
authored
Merge branch 'master' into update-highlighter
2 parents bbdaa13 + 995d1ab commit a6bf9ed

File tree

5 files changed

+20
-74
lines changed

5 files changed

+20
-74
lines changed

.github/workflows/main.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,20 @@ jobs:
3636
uses: actions/upload-pages-artifact@v3
3737
with:
3838
path: ./output
39+
40+
deploy:
41+
if: github.ref == 'refs/heads/master'
42+
permissions:
43+
contents: read
44+
pages: write
45+
id-token: write
46+
47+
runs-on: ubuntu-latest
48+
needs: build
49+
environment:
50+
name: github-pages
51+
url: ${{steps.deployment.outputs.page_url}}
52+
steps:
53+
- name: Deploy artifact
54+
id: deployment
55+
uses: actions/deploy-pages@v4

.travis.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

assets/content/cookbook/Beginner/pattern-matching.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,7 @@ for (value in 0...10) {
7979

8080
### Or pattern
8181

82-
The `|`
83-
operator can be used anywhere within patterns to describe multiple accepted patterns. If there is a captured variable in an or-pattern, it must appear in both its sub-patterns.
82+
The | operator can be used anywhere within patterns to describe multiple accepted patterns. If there is a captured variable in an or-pattern, it must appear in both its sub-patterns.
8483

8584
Let's go on with the previous example and say that not only 2 and 4 are special, but 6 is too. You can switch on multiple cases like this:
8685

assets/content/index.mtt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@
5959
<div class="span4">
6060
<h3><i class="fa fa-big fa-rocket"></i> The cross-platform development toolkit</h3>
6161
<p>Haxe is a modern high-level strictly-typed programming language with a fast optimizing cross-compiler.</p>
62-
<a href="https://haxe.org/download" class="btn btn-large"><i class="fa fa-download"></i> Download Haxe 4.3.5</a><br/>
63-
<small><em>Released: 2024-07-18</em></small>
62+
<a href="https://haxe.org/download" class="btn btn-large"><i class="fa fa-download"></i> Download Haxe 4.3.7</a><br/>
63+
<small><em>Released: 2025-05-09</em></small>
6464
</div>
6565
<div class="span4">
6666
<h3><i class="fa fa-big fa-gears"></i> Learning by example</h3>

deploy.sh

Lines changed: 0 additions & 41 deletions
This file was deleted.

0 commit comments

Comments
 (0)