Skip to content

Commit

Permalink
Merge branch 'master' into readonly
Browse files Browse the repository at this point in the history
  • Loading branch information
ViralBShah authored Aug 12, 2024
2 parents 94994ff + 5cfa2c3 commit dc0158a
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 96 deletions.
26 changes: 0 additions & 26 deletions .drone.jsonnet

This file was deleted.

55 changes: 0 additions & 55 deletions .drone.yml

This file was deleted.

18 changes: 18 additions & 0 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@ on:
types:
- created
workflow_dispatch:
inputs:
lookback:
default: "3"
permissions:
actions: read
checks: read
contents: write
deployments: read
issues: read
discussions: read
packages: read
pages: read
pull-requests: read
repository-projects: read
security-events: read
statuses: read
jobs:
TagBot:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
Expand All @@ -12,4 +28,6 @@ jobs:
- uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
# Edit the following line to reflect the actual name of the GitHub Secret containing your private key
ssh: ${{ secrets.DOCUMENTER_KEY }}
# ssh: ${{ secrets.NAME_OF_MY_SSH_PRIVATE_KEY_SECRET }}
19 changes: 8 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,29 +15,26 @@ jobs:
fail-fast: false
matrix:
julia-version:
- "1.3"
- "1"
- "nightly"
- 'lts'
- '1'
os:
- ubuntu-latest
- macos-latest
- windows-latest
julia-arch:
- x64
- x86
# 32-bit Julia binaries are not available on macOS
exclude:
include:
- os: macOS-latest
julia-arch: x86
julia-arch: aarch64
julia-version: '1'

steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- name: Cache artifacts
uses: actions/cache@v2
uses: actions/cache@v4
env:
cache-name: cache-artifacts
with:
Expand Down
8 changes: 4 additions & 4 deletions samples/Samples.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Example of painting with a Image Surface as source [sample_image.jl](sample_imag

### image pattern #

Example of painting with a Image Surface as pattern [sample_imagepattern.jl] (sample_imagepattern.jl).
Example of painting with a Image Surface as pattern [sample_imagepattern.jl](sample_imagepattern.jl).

![imagepattern .png](sample_imagepattern.png "imagepattern example")

Expand Down Expand Up @@ -188,12 +188,12 @@ Example of using Recording surface, simple copy, then scaled and offset.
![sample record0.png](sample_record0.png "record0 example")
![sample record1.png](sample_record1.png "record1 example")

Example of writing to script, put script text into frame.
Example of writing to script, put script text into frame. [sample_record0.jl](sample_record0.jl), [sample_record1.jl](sample_record1.jl)

![sample script0.png](sample_script0.png "scrip0 example")

### current point

Example of using current point
Example of using current point [sample_current_point.jl](sample_current_point.jl)

![sample current point.png](sample_current_point.png "current point example")
![sample current point.png](sample_current_point.png "current point example")

0 comments on commit dc0158a

Please sign in to comment.