This is an automated email from the ASF dual-hosted git repository.
orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 3d1de7b (chores) Remove unused ASF deployment action
3d1de7b is described below
commit 3d1de7b3ecd034699e48511a9fa6dca0d74fb994
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Thu Jan 13 17:31:54 2022 +0100
(chores) Remove unused ASF deployment action
---
.github/asf-deploy-settings.xml | 34 ----------------
.github/workflows/asf-snapshots-deploy.yml | 64 ------------------------------
2 files changed, 98 deletions(-)
diff --git a/.github/asf-deploy-settings.xml b/.github/asf-deploy-settings.xml
deleted file mode 100644
index b8da75d..0000000
--- a/.github/asf-deploy-settings.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
- Licensed to the Apache Software Foundation (ASF) under one or more
- contributor license agreements. See the NOTICE file distributed with
- this work for additional information regarding copyright ownership.
- The ASF licenses this file to You under the Apache License, Version 2.0
- (the "License"); you may not use this file except in compliance with
- the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
-
--->
-<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="
- http://maven.apache.org/SETTINGS/1.0.0
- http://maven.apache.org/xsd/settings-1.0.0.xsd">
-
- <servers>
- <server>
- <id>apache.snapshots.https</id>
- <username>${env.NEXUS_DEPLOY_USERNAME}</username>
- <password>${env.NEXUS_DEPLOY_PASSWORD}</password>
- </server>
- </servers>
-
-</settings>
\ No newline at end of file
diff --git a/.github/workflows/asf-snapshots-deploy.yml
b/.github/workflows/asf-snapshots-deploy.yml
deleted file mode 100644
index 1008139..0000000
--- a/.github/workflows/asf-snapshots-deploy.yml
+++ /dev/null
@@ -1,64 +0,0 @@
-#
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements. See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to you under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-name: Deploy Camel Snapshot
-
-on:
- schedule:
- # Run at 2 during night
- - cron: '0 2 * * *'
- workflow_dispatch:
-
-jobs:
- build:
- runs-on: ubuntu-latest
- strategy:
- matrix:
- java: [ '11' ]
- steps:
- - uses: actions/checkout@v2
- with:
- persist-credentials: false
- - name: Set up JDK ${{ matrix.java }}
- uses: actions/setup-java@v1
- with:
- java-version: ${{ matrix.java }}
- - name: Cache Maven Repository
- uses: actions/cache@v1
- with:
- path: ~/.m2
- key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
- restore-keys: ${{ runner.os }}-m2
-
- deploy:
- runs-on: ubuntu-latest
- needs: build
- if: github.ref == 'refs/heads/main'
- env:
- NEXUS_DEPLOY_USERNAME: ${{ secrets.NEXUS_USER }}
- NEXUS_DEPLOY_PASSWORD: ${{ secrets.NEXUS_PW }}
- steps:
- - uses: actions/checkout@v2
- with:
- persist-credentials: false
- - name: Set up JDK 11
- uses: AdoptOpenJDK/install-jdk@v1
- with:
- version: '11'
- - name: Deploy to ASF Snapshots Repository
- run: ./mvnw -U -B -e -fae -V -Dnoassembly -Dmaven.compiler.fork=true
-Pdeploy -Dmaven.test.skip.exec=true -Dhttp.keepAlive=false
-Dmaven.wagon.http.pool=false
-Dmaven.wagon.httpconnectionManager.ttlSeconds=120 --no-transfer-progress clean
deploy --settings .github/asf-deploy-settings.xml
-
-