Skip to content

Commit 2ca78cc

Browse files
committed
Merge branch 'next' of https://github.com/Esri/arcgis-python-api into next
2 parents bcf4cbf + 7b8fa46 commit 2ca78cc

File tree

1,285 files changed

+660596
-23736
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,285 files changed

+660596
-23736
lines changed
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: DockerBuild.LambdaImage
2+
3+
on:
4+
# allow it to be run on-demand
5+
workflow_dispatch:
6+
7+
jobs:
8+
build-and-push:
9+
name: Build Docker image and push to ghcr.io
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v3
15+
16+
- name: Set up Docker Buildx
17+
id: buildx
18+
uses: docker/setup-buildx-action@v2
19+
20+
- name: Login to Github Packages
21+
uses: docker/login-action@v2
22+
with:
23+
registry: ghcr.io
24+
username: ${{ github.actor }}
25+
password: ${{ secrets.GITHUB_TOKEN }}
26+
27+
- name: Docker meta
28+
id: meta
29+
uses: docker/metadata-action@v4
30+
with:
31+
images: |
32+
ghcr.io/esri/arcgis-python-api-lambda
33+
tags: |
34+
type=raw,value=2.2.0,enable={{is_default_branch}}
35+
type=raw,value=latest,enable={{is_default_branch}}
36+
type=schedule,pattern={{date 'YY.MM'}},enable={{is_default_branch}}
37+
type=sha,format=long
38+
39+
- id: docker_build
40+
name: Build image and push to GitHub Container Registry
41+
uses: docker/build-push-action@v4
42+
with:
43+
# relative path to the place where source code with Dockerfile is located
44+
context: .
45+
file: ./docker/LambdaBaseImage.Dockerfile
46+
tags: ${{ steps.meta.outputs.tags }}
47+
provenance: false
48+
platforms: linux/amd64
49+
push: true

PULL_REQUEST_TEMPLATE.md

Lines changed: 6 additions & 1 deletion

apidoc/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 070b7b5e7e43fd3d1b13643ed03f0948
3+
config: 0a88ba6927610c3ae92e0003f0bbe498
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

apidoc/2.0.0/.buildinfo

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Sphinx build info version 1
2+
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3+
config: 070b7b5e7e43fd3d1b13643ed03f0948
4+
tags: 645f666f9bcd5a90fca523b33c5a78b7
7.66 KB
8.06 KB

apidoc/2.0.0/_images/ALLOW_UTURNS.png

1.91 KB

apidoc/2.0.0/_images/D8.gif

920 Bytes

apidoc/2.0.0/_images/Disks.png

2.08 KB

apidoc/2.0.0/_images/Dissolve.png

1.45 KB

0 commit comments

Comments
 (0)